Skip to content

Commit 981f5cd

Browse files
committed
update readme
1 parent 52ba9fc commit 981f5cd

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
- ***[705 Design HashSet](/HT/705.md)***
1111
- ***[706 Design HashMap](/HT/706.md)***
1212
- ***[745 Prefix and Suffix Search](/HT/745.md)***
13+
- [888 Fair Candy Swap](/HT/888.md)
14+
- [890 Find and Replace Pattern](/HT/890.md)
1315

1416
## Dynamic Programming
1517

@@ -19,6 +21,7 @@
1921
2022
- ***[518 Coin Change 2](/DP/knapsack/518.md)(Coin Change)***
2123
- **[879 Profitable Schemes](/DP/knapsack/879.md)**
24+
- [1049 Last Stone Weight II](/DP/knapsack/1049.md)
2225

2326
### multi_var_DP
2427

@@ -28,6 +31,8 @@
2831
### traditional_DP
2932

3033
- **[10 Regular Expression Matching](/DP/traditionalDP/10.md)**
34+
- [120 Triangle](/DP/traditionalDP/120.md)
35+
- [474 Ones and Zeroes](/DP/traditionalDP/474.md)
3136
- [583 Delete Operation for Two Strings](/DP/traditionalDP/583.md)
3237
- [664 Strange Printer](/DP/traditionalDP/664.md)
3338
- **[688 Knight Probability in Chessboard](/DP/traditionalDP/688.md)**
@@ -42,8 +47,11 @@
4247
- [818 Race Car](/DP/traditionalDP/818.md)
4348
- ***[823 Binary Trees With Factors](/DP/traditionalDP/823.md)***
4449
- **[887 Super Egg Drop](/DP/traditionalDP/887.md)**
50+
- **[894 All Possible Full Binary Trees](/DP/traditionalDP/894.md)**
4551
- [898 Bitwise ORs of Subarrays](/DP/traditionalDP/898.md)
4652
- [903 Valid Permutations for DI Sequence](/DP/traditionalDP/903.md)
53+
- **[920 Number of Music Playlists](/DP/traditionalDP/920.md)**
54+
- [1143 Longest Common Subsequence](/DP/traditionalDP/1143.md)
4755

4856
### difference_DP
4957

@@ -153,6 +161,8 @@
153161
## Heap
154162

155163
- **[239 Sliding Window Maximum](/Heap/239.md)**
164+
- [264 Ugly Number II](/Heap/264.md)
165+
- [347 Top K Frequent Elements](/Heap/347.md)
156166
- **[480 Sliding Window Median](/Heap/480.md)**
157167
- **[313 Super Ugly Number](/Heap/313.md)**
158168
- **[373 Find K Pairs with Smallest Sums](/Heap/373.md)**
@@ -164,13 +174,16 @@
164174
- ***[767 Reorganize String](/Heap/767.md)***
165175
- **[871 Minimum Number of Refueling Stops](/Heap/871.md)**
166176
- ***[857 Minimum Cost to Hire K Workers](/Heap/857.md)***
177+
- [692 Top K Frequent Words](/Heap/692.md)
178+
- **[891 Sum of Subsequence Widths](/Greedy/891.md)**
167179

168180
## Stack
169181

170182
- **[84 Largest Rectangle in Histogram](/Stack/84.md)**
171183
- **[85 Maximal Rectangle](/Stack/85.md)**
172184
- **[227 Basic Calculator II](/Stack/227.md)**
173185
- **[678 Valid Parenthesis String](/Stack/678.md)**
186+
- ***[907 Sum of Subarray Minimums](/Stack/907.md)***
174187

175188
## Math
176189

@@ -189,6 +202,7 @@
189202
- [223 Rectangle Area](/Math/223.md)
190203
- [233 Number of Digit One](/Math/233.md)
191204
- [258 Add Digits](/Math/258.md)
205+
- [263 Ugly Number](/Math/263.md)
192206
- [319 Bulb Switcher](/Math/319.md)
193207
- [326 Power of Three](/Math/326.md)
194208
- [335 Self Crossing](/Math/335.md)
@@ -288,6 +302,7 @@
288302
- [859 Buddy Strings](/String/859.md)
289303
- [880 Decoded String at Index](/String/880.md)
290304
- [884 Uncommon Words from Two Sentences](/String/884.md)
305+
- [899 Orderly Queue](/String/899.md)
291306

292307
## Linked List
293308

@@ -317,6 +332,7 @@
317332
- ***[564 Find the Closest Palindrome](/Palindrome/564.md)***
318333
- **[680 Valid Palindrome II](/Palindrome/680.md)**
319334
- [866 Prime Palindrome](/Palindrome/866.md)
335+
- **[906 Super Palindromes](/Palindrome/906.md)**
320336

321337
## Greedy
322338

@@ -363,6 +379,8 @@
363379
- **[327 Count of Range Sum](/Sort/327.md)(Binary Search Tree, bisect)**
364380
- **[493 Reverse Pairs](/Sort/493.md)(Merge Sort for pairs)**
365381
- **[870 Advantage Shuffle](/Sort/870.md)**
382+
- [896 Monotonic Array](/Sort/896.md)
383+
- [912 Sort an Array](/Sort/912.md)
366384

367385
## SQL
368386

@@ -422,6 +440,7 @@
422440
## Binary Search
423441

424442
- ***[33 Search in Rotated Sorted Array](/BS/33.md)***
443+
- **[153 Find Minimum in Rotated Sorted Array](/BS/153.md)**
425444
- **[240 Search a 2D Matrix II](/BS/240.md)**(Bi-Binary-Search)
426445
- [278 First Bad Version](/BS/278.md)
427446
- **[300 Longest Increasing Subsequence](/BS/278.md)**
@@ -440,10 +459,15 @@
440459

441460
## Tree
442461

462+
***[105 Construct Binary Tree from Preorder and Inorder Traversal](/Tree/105.md)***
463+
***[106 Construct Binary Tree from Inorder and Postorder Traversal](/Tree/106.md)***
443464
- **[589 N-ary Tree Preorder Traversal](/Tree/589.md)**
444465
- **[590 N-ary Tree Postorder Traversal](/Tree/590.md)**
445466
- [783 Minimum Distance Between BST Nodes](/Tree/783.md)
446467
- [872 Leaf-Similar Trees](/Tree/872.md)(yield)
468+
- ***[889 Construct Binary Tree from Preorder and Postorder Traversal](/Tree/889.md)***
469+
- [897 Increasing Order Search Tree](/Tree/897.md)
470+
- [919 Complete Binary Tree Inserter](/Tree/919.md)
447471

448472
## General Type
449473

0 commit comments

Comments
 (0)