赞
踩
#include <unordered_set>
unordered_set<int> hashset;
也可为其他类型,如:
unordered_set<char> hashset;
hashset.insert('a')
hashset.erase('a');
- if (hashset.count('a') > 0)
- {
- return true;
- }
- else
- {
- return false;
- }
hashset.size()
- for (auto it = hashset.begin(); it != hashset.end(); it++)
- {
- cout << (*it) << " ";
- }
hashset.clear();
- if (hashset.empty() )
- {
- return true;
- }
- else
- {
- return false;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。