16-02-05.cpp

来自「more efftive 代码」· C++ 代码 · 共 38 行

CPP
38
字号
#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 + =
减小字号Ctrl + -
显示快捷键?