@@ -91,7 +91,7 @@ LeetCode 是一个非常棒的 OJ(Online Judge)平台,收集了许多公
9191| 459| String;| [ Repeated Substring Pattern] ( http://blog.csdn.net/daigualu/article/details/69663545 ) |
9292| 520| String;| [ Detect Capital] ( http://blog.csdn.net/daigualu/article/details/69663210 ) |
9393
94- ** Linked List** :链表可以快速地插入、删除,但是查找比较费时(具体操作链表时结合图会简单很多,此外要注意空节点)。通常链表的相关问题可以用双指针巧妙的解决, 160. Intersection of Two Linked Lists 可以帮我们重新审视链表的操作。
94+ ** Linked List** :链表可以快速地插入、删除,但是查找比较费时(具体操作链表时结合图会简单很多,此外要注意空节点)。通常链表的相关问题可以用双指针巧妙的解决, 160. Intersection of Two Linked Lists 可以帮我们重新审视链表的操作。</ br >
9595| ID| Tags| Solution|
9696| --| ----| --------|
9797| 2| LinkedList;Math;| [ Add Two Numbers] ( http://blog.csdn.net/daigualu/article/details/72957905 ) |
@@ -105,7 +105,7 @@ LeetCode 是一个非常棒的 OJ(Online Judge)平台,收集了许多公
105105| 234| LinkedList;TwoPointers;| [ Palindrome Linked List] ( http://blog.csdn.net/daigualu/article/details/69388513 ) |
106106| 237| LinkedList;| [ Delete Node in a Linked List] ( http://blog.csdn.net/daigualu/article/details/69055991 ) |
107107
108- ** Hash Table** :利用 Hash 函数来将数据映射到固定的一块区域,方便 O(1) 时间内读取以及修改。 37. Sudoku Solver 数独是一个经典的回溯问题,配合 HashTable 的话,运行时间将大幅减少。
108+ ** Hash Table** :利用 Hash 函数来将数据映射到固定的一块区域,方便 O(1) 时间内读取以及修改。 37. Sudoku Solver 数独是一个经典的回溯问题,配合 HashTable 的话,运行时间将大幅减少。</ br >
109109| ID| Tags| Solution|
110110| --| ----| --------|
111111| 1| Array;HashTable;| [ Two Sum] ( http://blog.csdn.net/daigualu/article/details/68957096 ) |
@@ -130,7 +130,7 @@ LeetCode 是一个非常棒的 OJ(Online Judge)平台,收集了许多公
130130| 500| HashTable;| [ Keyboard Row] ( http://blog.csdn.net/daigualu/article/details/71447614 ) |
131131| 575| HashTable;| [ Distribute Candies] ( http://blog.csdn.net/daigualu/article/details/71625170 ) |
132132
133- ** Tree** :树在计算机学科的应用十分广泛,常用的有二叉搜索树,红黑书,B+树等。树的建立,遍历,删除相对来说比较复杂,通常会用到递归的思路, 113. Path Sum II 是一个不错的开胃菜。
133+ ** Tree** :树在计算机学科的应用十分广泛,常用的有二叉搜索树,红黑书,B+树等。树的建立,遍历,删除相对来说比较复杂,通常会用到递归的思路, 113. Path Sum II 是一个不错的开胃菜。</ br >
134134| ID| Tags| Solution|
135135| --| ----| --------|
136136| 100| Tree;| [ Same Tree] ( http://blog.csdn.net/daigualu/article/details/70254478 ) |
@@ -155,7 +155,7 @@ LeetCode 是一个非常棒的 OJ(Online Judge)平台,收集了许多公
155155| 543| Tree;| [ Diameter of Binary Tree] ( http://blog.csdn.net/daigualu/article/details/70491447 ) |
156156| 572| Tree;| [ Subtree of Another Tree] ( http://blog.csdn.net/daigualu/article/details/71908238 ) |
157157
158- ** Heap** :特殊的完全二叉树,“等级森严”,可以用 O(nlogn) 的时间复杂度来进行排序,可以用 O(nlogk) 的时间复杂度找出 n 个数中的最大(小)k个,具体可以看看 347. Top K Frequent Elements 。
158+ ** Heap** :特殊的完全二叉树,“等级森严”,可以用 O(nlogn) 的时间复杂度来进行排序,可以用 O(nlogk) 的时间复杂度找出 n 个数中的最大(小)k个,具体可以看看 347. Top K Frequent Elements 。</ br >
159159| ID| Tags| Solution|
160160| --| ----| --------|
161161| 215| Divide and Conquer;Heap;| [ Kth Largest Element in an Array] ( http://blog.csdn.net/daigualu/article/details/70188460 ) |
@@ -270,7 +270,7 @@ StefanPochmann 也不厌其烦地给出了自己的答案:
270270<h4>常用标签</h4>
271271<center>
272272
273-
273+ </br>
274274## 已完成题目列表
275275|ID|Tags|Solution|
276276|--|----|--------|
0 commit comments