[TOC] 316. 去除重复字母[https://leetcode.cn/problems/remove-duplicate-letters/](中等) 186. 反转字符...
[TOC] 316. 去除重复字母[https://leetcode.cn/problems/remove-duplicate-letters/](中等) 186. 反转字符...
[TOC] 基础知识 队列没有必要维护窗口里的所有元素,只需要维护有可能成为窗口里最大值的元素就可以了,同时保证队列里的元素数值是由大到小的。 单调队列不是单纯的给队列中元素...
[TOC] 56. 合并区间[https://leetcode.cn/problems/merge-intervals/](中等) 57. 插入区间[https://leet...
[TOC] 深度优先遍历 定义 「一条路走到底,不撞南墙不回头」。深度优先遍历 只要前面有可以走的路,就会一直向前走,直到无路可走才会回头; 无路可走有两种情况:① 遇到了墙...
[TOC] 基础知识 https://labuladong.gitee.io/algo/2/22/53/[https://labuladong.gitee.io/algo/2...
代码随想录https://github.com/youngyangyang04/leetcode-master[https://github.com/youngyangyan...
[TOC] 232. 用栈实现队列[https://leetcode-cn.com/problems/implement-queue-using-stacks/] 用队列实现栈
https://leetcode-cn.com/problems/minimum-depth-of-binary-tree/solution/dai-ma-sui-xiang...
[TOC] Leetcode刷题 300. 最长递增子序列[https://leetcode-cn.com/problems/longest-increasing-subse...
[TOC] 局部最优解->全局最优 455. 分发饼干[https://leetcode.cn/problems/assign-cookies/](简单/贪心) 392. 判...
招标系统
[TOC] BFS 和 DFS BFS广度有限搜索和DFS深度优先搜索算法是特别常用的两种算法 DFS 算法就是回溯算法,DFS 遍历使用递归: 写 BFS 算法都是用「队列...
[TOC] 排序 Go中排序函数 一维数组排序 二维矩阵排序 2.1 m*n矩阵,按照m升序 2.2 m*n矩阵,先按m升序,m相同,按n升序 结构体排序 字符串包的使用 G...
[TOC] Leetcode刷题 3. 无重复字符的最长子串[https://leetcode-cn.com/problems/longest-substring-witho...
[TOC] 496. 下一个更大元素 I[https://leetcode.cn/problems/next-greater-element-i/](简单) 503. 下一个...