摘要: 1.哈希表的使用 <1> 拉链法 1 #include <cstring> 2 #include <iostream> 3 4 using namespace std; 5 6 const int N = 1e5 + 3; // 取大于1e5的第一个质数,取质数冲突的概率最小 可以百度 7 8 // 阅读全文
posted @ 2023-11-10 00:43 rw156 阅读(14) 评论(0) 推荐(0)