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

273
277
</br>
274
278
## 已完成题目列表
279
+
275
280
|ID|Tags|Solution|
276
281
|--|----|--------|
277
282
|1|Array;HashTable;|[Two Sum](http://blog.csdn.net/daigualu/article/details/68957096)|
@@ -418,7 +423,7 @@ https://github.com/jackzhenguo/leetcode-csharp 欢迎感兴趣的朋友加入进
418
423
http://blog.csdn.net/column/details/14761.html 欢迎关注!
419
424
<h3>6 LeetCode已完成题目管理工具</h3>
420
425
自己基于.NET平台,EF框架,制作的本地SQL Server小工具,专门管理LeetCode标签和题目,能输出用于CSDN博客和Github表格模板的功能。主界面视图如下:
421
- <center>
426
+
422
427

423
428
424
429
此工具的软件安装包,Github下载地址如下:
0 commit comments