📄 16-02-05.cpp
字号:
#include <iostream>#include <hash_set>#include <cstring>using namespace std;struct eqstr{ bool operator()(const char* s1, const char* s2) const { return strcmp(s1, s2) == 0; }};void lookup(const hash_set<const char*, hash<const char*>, eqstr>& Set, const char* word){ hash_set<const char*, hash<const char*>, eqstr>::const_iterator it = Set.find(word); cout << " " << word << ": " << (it != Set.end() ? "present" : "not present") << endl;}int main(){ hash_set<const char*, hash<const char*>, eqstr> Set; Set.insert("kiwi"); Set.insert("plum"); Set.insert("apple"); Set.insert("mango"); Set.insert("apricot"); Set.insert("banana"); lookup(Set, "mango"); lookup(Set, "apple"); lookup(Set, "durian"); // 块
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -