Update hash map

This commit is contained in:
Yudong Jin
2022-12-15 23:08:07 +08:00
parent 1229f98e92
commit c071ab88d2
6 changed files with 13 additions and 8 deletions

View File

@ -7,6 +7,7 @@
#include "../include/include.hpp"
/* Driver Code */
int main() {
/* 初始化哈希表 */
unordered_map<int, string> map;
@ -49,4 +50,4 @@ int main() {
}
return 0;
}
}