Data Structures
weixin_45470102
这个作者很懒,什么都没留下…
展开
-
易错集
Array 双array iterate while ...: if i >= m or arr[i] < arr[j]: // 这一步如果i < m但是j >= n, 第二个判断会out of bound ... else: ...原创 2019-08-13 00:35:52 · 67 阅读 · 0 评论 -
[Data Structure] DFS
好好看一下这个文档,对方是怎么define union find这个API的 https://python-algorithms.readthedocs.io/en/stable/_modules/python_algorithms/basic/union_find.html原创 2019-09-17 10:19:10 · 74 阅读 · 0 评论 -
[Data Structure] Stack and Heap
文章目录StackDecode and Encode String Stack Decode and Encode String https://leetcode.com/problems/valid-parentheses/ input: ‘([)]’ output: True or False 多种括号问题,容易错,还是得用stack,用count是不行的。。。 Trapping Rain ...原创 2019-09-17 11:33:47 · 231 阅读 · 0 评论 -
[Data Structure] Binary Tree
binary tree iterator https://leetcode.com/problems/binary-search-tree-iterator/原创 2019-09-17 11:34:15 · 98 阅读 · 0 评论 -
[Data Structure]超经典
https://leetcode.com/problems/decode-string/原创 2019-09-18 06:49:00 · 81 阅读 · 0 评论