begin
iterator begin();
begin()函数返回一个迭代器指向map的第一个元素。
clear
void clear();
clear()函数删除map中的所有元素。
count
size_type count( const KEY_TYPE &key );
count()函数返回map中键值等于key的元素的个数。
专注Linux下应用与编程
Android下使用TCPDUMP抓包Wireshark分析数据 如果想分析Android下某个APP的网络数据交互,需要在Android手机上抓包,最常用的抓包工具非tcpdump莫属,用tcpdump生成Wireshark识别的pcap文件,然后将pcap文件下载到电脑上,用电脑上的Wireshark加载pcap文件,通过Wireshark分析tcpdump抓取的数据。...
Mac下部署Android开发环境附加NDK 作为开发者,我们深有体会,不管是进行什么开发,为了部署开发环境,我们往往需要折腾很长时间、查阅很多资料才能完成,而且这次折腾完了,下次到了另一台新电脑上又得重新来过,整个部署过程记得还好,要是不记得又得重新开始,而且遇到Android这种GFW阻隔了开发资源下载链接的环境部署,又尤其浪费时间。所以这也是我写下这篇教程的初衷跟动力源泉,希望大家参考了这篇教程以后可以轻轻松松在Mac系统下将Android环境部署好。...
稍顯嚴肅的台中 坦白說,留在腦海中的台中影像並不多,來台灣之前在Booking上只訂到了台中的一家青旅,第一次住青旅有些不習慣,幹什麼都放不開。 同屋的一個男生是台灣人,不過一年中四分之三的時間在上海跟北京,這麼說來跟我還是比較有共同話題的。得之我準備花15天的時間環島,覺得太倉促了,他們大學時期花一個半月的時間也不見得能將台灣島給逛完。我只能無奈地表示,兩岸允許的簽證時間有限,自己的空閒時間更有限,只能用打卡式的旅行了,我深知正真地旅行應該慢下來,融入當地的環境,感受他們的風土人情,但第一次只能這樣作罷,以後換成民進黨上台,形勢會變成怎樣還不得而知,能否再過來還是個未知數。而我一向信奉的人生格言是秉燭夜遊,活在當下,所以,理解自己吧。...
為之留戀的新竹 來新竹之前本沒有對她有過高的期待,慢慢對她加分要從桃園火車站出發前往新竹開始。 在桃園火車站的候車月台上,有醒目的旅遊資料發放處,這上面的擺放的全是新竹的旅遊宣傳資料,關鍵的是資料做得非常簡潔易懂,而接下來一天的新竹之行就全部是依據這份寶典的指引來完成的。...
begin
iterator begin();
begin()函数返回一个迭代器指向map的第一个元素。
clear
void clear();
clear()函数删除map中的所有元素。
count
size_type count( const KEY_TYPE &key );
count()函数返回map中键值等于key的元素的个数。
begin
iterator begin();
返回指向当前集合中第一个元素的迭代器。
clear
void clear();
清除当前集合中的所有元素。
count
size_type count( const key_type &key );
返回当前集合中出现的某个值的元素的数目。
阅读全文
#include <iostream> #include <set> #include <iomanip> #include <string> using namespace std; template <class T> class Member { public: Member(T l, T f) : last(l), first(f) {} void print() const // const !!! { cout.setf(ios::left); cout << setw(15) << first.c_str() << last << endl; } private: T first, last; // const !!! friend bool operator < (const Member& m1, const Member& m2) { return (m1.last < m2.last) ? true : false; } friend bool operator == (const Member& m1, const Member& m2) { return (m1.last == m2.last) ? true : false; } }; //=============================================== int main () { typedef Member<string> M; typedef set<M, less<M> > S; M m("Frost","Robert"); S s; s.insert(m); s.insert(M("Smith","John")); s.insert(M("Amstrong","Bill")); s.insert(M("Bain","Linda")); S::iterator It = s.begin(); while ( It != s.end() ) (It++)->print(); cout << endl; S::reverse_iterator rI = s.rbegin(); while ( rI != s.rend() ) (rI++)->print(); return 0; } 运行结果: // Bill Amstrong // Linda Bain // Robert Frost // John Smith // // John Smith // Robert Frost // Linda Bain // Bill Amstrong
#include <iostream> #include <set> using namespace std; void print (set<int, less<int> >& s) { set<int, less<int> >::iterator It; for ( It = s.begin(); It != s.end(); It++ ) cout << *It << " "; cout << endl; } //-------------------------------------------- int main () { int ary[] = {1,2,3,2,3,4,8,2,5,6}; set<int, less<int> > s; s.insert(ary,ary+10); print(s); // erase '2' s.erase(2); print(s); set<int, less<int> >::iterator It; It = s.find(5); // erase '5' s.erase(It); print(s); It = s.find(4); // erase from It to the end of set s.erase(It,s.end()); print(s); return 0; } 运行结果: // 1 2 3 4 5 6 8 // 1 3 4 5 6 8 // 1 3 4 6 8 // 1 3
#include <iostream> #include <set> int main () { int ary[] = { 5,3,7,5,2,3,7,5,5,4 }; set<int> s1; set<int, greater<int> > s2; for ( int i=0; i<sizeof(ary)/sizeof(int); i++ ) { s1.insert(ary[i]); s2.insert(ary[i]); } set<int>::iterator It = s1.begin(); cout << "s1 : "; while ( It != s1.end() ) cout << *(It++) << " "; cout << endl; It = s2.begin(); cout << "s2 : "; while ( It != s2.end() ) cout << *(It++) << " "; cout << endl; // 第二种形式的构造 set<int> s3(ary,ary+3); It = s3.begin(); cout << "s3 : "; while ( It != s3.end() ) cout << *(It++) << " "; cout << endl; //拷贝构造 set<int, less > s4(s1); It = s4.begin(); cout << "s4 : "; while ( It != s4.end() ) cout << *(It++) << " "; cout << endl; return 0; } 运行结果: // s1 : 2 3 4 5 7 // s2 : 7 5 4 3 2 // s3 : 3 5 7 // s4 : 2 3 4 5 7
#include <iostream> #include <list> int main () { list<int> l(10); cout << "Size of list l = " << l.size(); l.resize(100); cout << "After l.resize(100)" << endl; cout << "Size of list l = " << l.size(); l.resize(5); cout << "After l.resize(5)" << endl; cout << "Size of list l = " << l.size(); return 0; } 运行结果: // Size of list l = 10After l.resize(100) // Size of list l = 100After l.resize(5) // Size of list l = 5
#include <iostream> #include <list> int main () { list li(10); cout << "size() of li = " << li.size() << endl; cout << "max_size = " << li.max_size() << endl; return 0; } 运行结果: // size() of li = 10 // max_size = 4294967295
#include <iostream> #include <list> #include <algorithm> #include <iterator> using namespace std; int main () { int ary[]={1,2,3,4,5}; list<int> l; // 将数组ary分配给l容器 l.assign(ary,ary+5); copy(l.begin(),l.end(), ostream_iterator<int>(cout," ")); cout << endl; // 用3个100替换l容器内容 l.assign(3,100); copy(l.begin(),l.end(), ostream_iterator<int>(cout," ")); cout << endl; return 0; } 运行结果: // 1 2 3 4 5 // 100 100 100
#include <iostream> #include <deque> #include <string> #include <iterator> using namespace std; template <class T> class Name { public: Name(T t) : name(t) {} void print() { cout << name << " "; } private: T name; }; //============================= int main () { typedef Name<string> N; typedef deque<N> D; D d; N n1("Robert"); N n2("Alex"); d.push_back(n1); d.push_back(n2); // unnamed object of the type Name d.push_back(N("Linda")); D::iterator It = d.begin(); while ( It != d.end() ) (It++)->print(); cout << endl; return 0; } 运行结果: // Robert Alex Linda
#include <iostream> #include <deque> #include <iterator> #include <numeric> using namespace std; int main () { deque<int> d(5); iota(d.begin(),d.end(),1); deque<int>::iterator It = d.begin(); while ( It != d.end() ) cout << *It++ << " "; cout << endl; // deque容器的最后一个元素 It = d.end()-1; cout << *It << endl; return 0; } 运行结果: // 1 2 3 4 5 // 5