摘要: 链表高频题 160. 相交链表 #include <vector> #include <iostream> #include <algorithm> struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(N 阅读全文
posted @ 2024-09-28 23:30 n1ce2cv 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 数据结构设计 设计有setAll功能的哈希表 加时间戳 #include <vector> #include <iostream> #include <algorithm> #include <unordered_map> using namespace std; // <key, <val, ti 阅读全文
posted @ 2024-09-28 18:43 n1ce2cv 阅读(8) 评论(0) 推荐(0) 编辑