8.Boost之unordered_set
生活随笔
收集整理的這篇文章主要介紹了
8.Boost之unordered_set
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1. boost::unordered_set(優勢:查找非常方便)
#include <iostream>
#include<boost/unordered_set.hpp>
#include<string>
?
using namespace std;
?
void main()
{
??? boost::unordered_set<std::string> myhashset;
??? myhashset.insert("ABC");
??? myhashset.insert("ABCA");
??? myhashset.insert("ABCAG");
?
??? for (auto ib = myhashset.begin(); ib != myhashset.end();ib++)
??? {
??????? cout << *ib << endl;
??? }
??? std::cout << (myhashset.find("ABCA1") != myhashset.end()) << endl;
??? cin.get();
}
運行結果:
?
?
?
?
?
總結
以上是生活随笔為你收集整理的8.Boost之unordered_set的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 6.Boost之smartpointer
- 下一篇: 9.Boost之正则regex