@@ -91,7 +91,7 @@ LeetCode 是一个非常棒的 OJ(Online Judge)平台,收集了许多公
91
91
| 459| String;| [ Repeated Substring Pattern] ( http://blog.csdn.net/daigualu/article/details/69663545 ) |
92
92
| 520| String;| [ Detect Capital] ( http://blog.csdn.net/daigualu/article/details/69663210 ) |
93
93
94
- ** Linked List** :链表可以快速地插入、删除,但是查找比较费时(具体操作链表时结合图会简单很多,此外要注意空节点)。通常链表的相关问题可以用双指针巧妙的解决, 160. Intersection of Two Linked Lists 可以帮我们重新审视链表的操作。
94
+ ** Linked List** :链表可以快速地插入、删除,但是查找比较费时(具体操作链表时结合图会简单很多,此外要注意空节点)。通常链表的相关问题可以用双指针巧妙的解决, 160. Intersection of Two Linked Lists 可以帮我们重新审视链表的操作。</ br >
95
95
| ID| Tags| Solution|
96
96
| --| ----| --------|
97
97
| 2| LinkedList;Math;| [ Add Two Numbers] ( http://blog.csdn.net/daigualu/article/details/72957905 ) |
@@ -105,7 +105,7 @@ LeetCode 是一个非常棒的 OJ(Online Judge)平台,收集了许多公
105
105
| 234| LinkedList;TwoPointers;| [ Palindrome Linked List] ( http://blog.csdn.net/daigualu/article/details/69388513 ) |
106
106
| 237| LinkedList;| [ Delete Node in a Linked List] ( http://blog.csdn.net/daigualu/article/details/69055991 ) |
107
107
108
- ** Hash Table** :利用 Hash 函数来将数据映射到固定的一块区域,方便 O(1) 时间内读取以及修改。 37. Sudoku Solver 数独是一个经典的回溯问题,配合 HashTable 的话,运行时间将大幅减少。
108
+ ** Hash Table** :利用 Hash 函数来将数据映射到固定的一块区域,方便 O(1) 时间内读取以及修改。 37. Sudoku Solver 数独是一个经典的回溯问题,配合 HashTable 的话,运行时间将大幅减少。</ br >
109
109
| ID| Tags| Solution|
110
110
| --| ----| --------|
111
111
| 1| Array;HashTable;| [ Two Sum] ( http://blog.csdn.net/daigualu/article/details/68957096 ) |
@@ -130,7 +130,7 @@ LeetCode 是一个非常棒的 OJ(Online Judge)平台,收集了许多公
130
130
| 500| HashTable;| [ Keyboard Row] ( http://blog.csdn.net/daigualu/article/details/71447614 ) |
131
131
| 575| HashTable;| [ Distribute Candies] ( http://blog.csdn.net/daigualu/article/details/71625170 ) |
132
132
133
- ** Tree** :树在计算机学科的应用十分广泛,常用的有二叉搜索树,红黑书,B+树等。树的建立,遍历,删除相对来说比较复杂,通常会用到递归的思路, 113. Path Sum II 是一个不错的开胃菜。
133
+ ** Tree** :树在计算机学科的应用十分广泛,常用的有二叉搜索树,红黑书,B+树等。树的建立,遍历,删除相对来说比较复杂,通常会用到递归的思路, 113. Path Sum II 是一个不错的开胃菜。</ br >
134
134
| ID| Tags| Solution|
135
135
| --| ----| --------|
136
136
| 100| Tree;| [ Same Tree] ( http://blog.csdn.net/daigualu/article/details/70254478 ) |
@@ -155,7 +155,7 @@ LeetCode 是一个非常棒的 OJ(Online Judge)平台,收集了许多公
155
155
| 543| Tree;| [ Diameter of Binary Tree] ( http://blog.csdn.net/daigualu/article/details/70491447 ) |
156
156
| 572| Tree;| [ Subtree of Another Tree] ( http://blog.csdn.net/daigualu/article/details/71908238 ) |
157
157
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 >
159
159
| ID| Tags| Solution|
160
160
| --| ----| --------|
161
161
| 215| Divide and Conquer;Heap;| [ Kth Largest Element in an Array] ( http://blog.csdn.net/daigualu/article/details/70188460 ) |
@@ -270,7 +270,7 @@ StefanPochmann 也不厌其烦地给出了自己的答案:
270
270
<h4>常用标签</h4>
271
271
<center>
272
272

273
-
273
+ </br>
274
274
## 已完成题目列表
275
275
|ID|Tags|Solution|
276
276
|--|----|--------|
0 commit comments