容器set

//set底层是红黑树,有序。unordered_set底层是哈希,无序,但查找效率高,速度快 
#include <iostream>
#include <set>
using namespace std;
int main()
{
    set<int>s;
    s.insert(2);
    s.insert(4);
    for(auto x:s)
    cout<<x<<endl; 
    return 0;
}

 

posted @ 2020-02-10 09:33  zmachine  阅读(120)  评论(0编辑  收藏  举报