1. 程式人生 > 實用技巧 >手寫陣列排序

手寫陣列排序

技術標籤:C

容器

容器分為關聯容器和順序容器。

關聯容器

set的使用

一個簡單的例子,使用insert進行插入,使用迭代器訪問set中的元素:

#include<iostream>
#include<set>

using namespace std;


int main()
{
    set<int> s;
    s.insert(1);
    s.insert(4);
    s.insert(9);

    for (set<int>::iterator it = s.begin(); it != s.end(); it ++
) { cout << *it << endl; } return 0; }