摘要:
835 Trie字符串统计 链接:https://www.acwing.com/problem/content/837/ #include <iostream> using namespace std; const int N = 100010; int n; int son[N][26], cnt 阅读全文
摘要:
826. 单链表 链接:https://www.acwing.com/problem/content/828/ 使用数组模拟链表,速度比较快;邻接表,一般用来存储树和图; #include <iostream> using namespace std; const int N = 100010; / 阅读全文
摘要:
链接:https://leetcode-cn.com/problems/sort-list/ 代码 /* * @lc app=leetcode.cn id=148 lang=cpp * * [148] 排序链表 * 归并排序:自底向上非递归 */ // @lc code=start /** * De 阅读全文
摘要:
链接:https://leetcode-cn.com/problems/insertion-sort-list/ 代码 /* * @lc app=leetcode.cn id=147 lang=cpp * * [147] 对链表进行插入排序 */ // @lc code=start /** * De 阅读全文
摘要:
链接:https://leetcode-cn.com/problems/lru-cache/ 代码 /* * @lc app=leetcode.cn id=146 lang=cpp * * [146] LRU缓存机制 */ // @lc code=start class LRUCache { pub 阅读全文
摘要:
链接:https://leetcode-cn.com/problems/binary-tree-postorder-traversal/ 代码 /* * @lc app=leetcode.cn id=145 lang=cpp * * [145] 二叉树的后序遍历 */ // @lc code=sta 阅读全文
摘要:
链接:https://leetcode-cn.com/problems/binary-tree-preorder-traversal/ 代码 /* * @lc app=leetcode.cn id=144 lang=cpp * * [144] 二叉树的前序遍历 */ // @lc code=star 阅读全文
摘要:
链接:https://leetcode-cn.com/problems/reorder-list/ 代码 /* * @lc app=leetcode.cn id=143 lang=cpp * * [143] 重排链表 */ // @lc code=start /** * Definition for 阅读全文
摘要:
链接:https://leetcode-cn.com/problems/linked-list-cycle-ii/ 代码 /* * @lc app=leetcode.cn id=142 lang=cpp * * [142] 环形链表 II */ // @lc code=start /** * Def 阅读全文
摘要:
链接:https://leetcode-cn.com/problems/linked-list-cycle/ 代码 /* * @lc app=leetcode.cn id=141 lang=cpp * * [141] 环形链表 */ // @lc code=start /** * Definitio 阅读全文