摘要: c++ 链式哈希(hash table) https://www.tutorialspoint.com/data_structures_algorithms/hash_data_structure.htm redis 单线程or多线程 https://juejin.im/post/684490413 阅读全文
posted @ 2020-08-29 17:05 upupon 阅读(106) 评论(0) 推荐(0) 编辑
摘要: define fun(x) #x, 会把x扩展为字符串 如果要将x代表的变量,转为字符串,而不是把x直接转为字符串,需要做下转换。 #include <iostream> #define STR(x) #x #define MAX 100 #define STR1(x) #x #define STR 阅读全文
posted @ 2020-08-29 15:48 upupon 阅读(646) 评论(0) 推荐(0) 编辑