摘要: 哈希表 705. 设计哈希集合 // 拉链法 struct ListNode { int val; struct ListNode *next; }; typedef struct { struct ListNode *data; } MyHashSet; // 模 const int hashSi 阅读全文
posted @ 2023-12-28 18:39 n1ce2cv 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 算法笔记 散列 字符串散列 // 把字符串当成26进制数,转换成10进制,建立映射关系 int hash(char S[], int len) { int res = 0; for (int i = 0; i < len; ++i) { res = res * 26 + (S[i] - 'A'); 阅读全文
posted @ 2023-12-28 15:12 n1ce2cv 阅读(5) 评论(0) 推荐(0) 编辑