vector map set 常用操作小結

2021-06-19 00:54:04 字數 1422 閱讀 8796

vector:

#include

#include

using namespace std;

int main()

cout << "刪除第乙個元素後:" << endl;

for (vector::iterator it = myvec.begin(); it != myvec.end(); ++it)

cout << *it << endl;

myvec.clear();  //清除所有元素

cout << "清除元素後:" << endl;

for (vector::iterator it = myvec.begin(); it != myvec.end(); ++it)

cout << *it << endl;

return 0;

}map:

#include

#include

#include

using namespace std;

typedef struct itemstruct

items;

items s[4] = 

, , ,

};int main()

; for(int i=0; i<4; i++)

cout << "初始化元素:" << endl;

for(map::iterator it=mymap.begin(); it!=mymap.end(); ++it)

for(map::iterator it=mymap.begin(); it!=mymap.end(); ++it)

}cout << "刪除 second.a > 100 的元素後:" << endl;

for(map::iterator it=mymap.begin(); it!=mymap.end(); ++it)

cout << "查詢鍵值為 2nd 的元素:" << endl;

auto it = mymap.find("2nd");   //查詢元素

if (it != mymap.end())

cout << it->first << " " << it->second.a << " " << it->second.b << endl;

mymap.clear();  //清除所有元素

cout << "清除後再列印:" << endl;

for(map::iterator it=mymap.begin(); it!=mymap.end(); ++it)

return 0;

}set:

#include

#include

using namespace std;

typedef struct newtype;

struct compare

未完待續。。。

Oracle data guard常用維護操作命令

data guard是oracle提供的一種高可用性解決方案,用於資料保護和容災,通過日誌同步來把資料及時傳送到備用節點,現總結一下data guard環境下常用的維護命令 1 在生產庫停止data guard操作 sql show parameter log archive dest sql al...

JavaWeb response物件常用操作

方式一response.setcontenttype contenttype 方式二response.setheader content type contenttype response.setcontenttype mime 的作用 讓伺服器告訴瀏覽器它傳送的資料屬於什麼檔案型別,使客戶端瀏覽器...

JavaWeb response物件常用操作

方式一response.setcontenttype contenttype 方式二response.setheader content type contenttype response.setcontenttype mime 的作用 讓伺服器告訴瀏覽器它傳送的資料屬於什麼檔案型別,使客戶端瀏覽器...