|
243 | 243 | | **0145** | [Binary Tree Postorder Traversal][145] | Stack, Tree, DFS, Binary Tree | ![][easy] | | |
244 | 244 | | **0199** | [Binary Tree Right Side View][199] | Tree, DFS, BFS, Binary Tree | ![][medium] | | |
245 | 245 | | **0222** | [Count Complete Tree Nodes][222] | Binary Search, Tree, DFS, Binary Tree | ![][medium] | | |
| 246 | +| **0226** | [Invert Binary Tree][226] | Tree, Depth-First Search, Breadth-First Search, Binary Tree | ![][easy] | | |
246 | 247 | | **0230** | [Kth Smallest Element in a BST ][230] | Tree, DFS, BST, Binary Tree | ![][medium] | | |
247 | 248 | | **0236** | [Lowest Common Ancestor of a Binary Tree][236] | Tree, Depth-First Search, Binary Tree | ![][medium] | | |
248 | 249 | | **0337** | [House Robber III][337] | DP, Tree, DFS, Binary Tree | ![][medium] | | |
|
298 | 299 | | **0145** | [Binary Tree Postorder Traversal][145] | Stack, Tree, DFS, Binary Tree | ![][easy] | | |
299 | 300 | | **0199** | [Binary Tree Right Side View][199] | Tree, DFS, BFS, Binary Tree | ![][medium] | | |
300 | 301 | | **0222** | [Count Complete Tree Nodes][222] | Binary Search, Tree, DFS, Binary Tree | ![][medium] | | |
| 302 | +| **0226** | [Invert Binary Tree][226] | Tree, Depth-First Search, Breadth-First Search, Binary Tree | ![][easy] | | |
301 | 303 | | **0230** | [Kth Smallest Element in a BST ][230] | Tree, DFS, BST, Binary Tree | ![][medium] | | |
302 | 304 | | **0236** | [Lowest Common Ancestor of a Binary Tree][236] | Tree, Depth-First Search, Binary Tree | ![][medium] | | |
303 | 305 | | **0337** | [House Robber III][337] | DP, Tree, DFS, Binary Tree | ![][medium] | | |
|
354 | 356 | | **0094** | [Binary Tree Inorder Traversal][94] | Tree, Stack, DFS, Binary Tree | ![][easy] | | |
355 | 357 | | **0144** | [Binary Tree Preorder Traversal][144] | Stack, Tree, DFS, Binary Tree | ![][easy] | | |
356 | 358 | | **0145** | [Binary Tree Postorder Traversal][145] | Stack, Tree, DFS, Binary Tree | ![][easy] | | |
| 359 | +| **0225** | [Implement Stack using Queues][225] | ST, Design, Q | ![][easy] | | |
| 360 | +| **0232** | [Implement Queue using Stacks][232] | ST, Design, Q | ![][easy] | | |
357 | 361 | | **0445** | [Add Two Numbers II][445] | Linked List, Math, Stack | ![][medium] | | |
358 | 362 | | **0739** | [Daily Temperatures][739] | Array, Stack, Monotonic Stack | ![][medium] | | |
359 | 363 | | **1047** | [Remove All Adjacent Duplicates In String][1047] | String, Stack | ![][easy] | | |
|
362 | 366 |
|
363 | 367 | ## Design |
364 | 368 |
|
365 | | -| # | Solution | Tags | Difficulty | Remark | |
366 | | -| :-: | :------: | :--: | :--------: | :----: | |
| 369 | +| # | Solution | Tags | Difficulty | Remark | |
| 370 | +| :------: | :---------------------------------: | :-----------: | :--------: | :----: | |
| 371 | +| **0225** | [Implement Stack using Queues][225] | ST, Design, Q | ![][easy] | | |
| 372 | +| **0232** | [Implement Queue using Stacks][232] | ST, Design, Q | ![][easy] | | |
367 | 373 |
|
368 | 374 | <!---------------------------------{ Solution Table }--------------------------> |
369 | 375 |
|
|
530 | 536 |
|
531 | 537 | ## Queue |
532 | 538 |
|
533 | | -| # | Solution | Tags | Difficulty | Remark | |
534 | | -| :-: | :------: | :--: | :--------: | :----: | |
| 539 | +| # | Solution | Tags | Difficulty | Remark | |
| 540 | +| :------: | :---------------------------------: | :-----------: | :--------: | :----: | |
| 541 | +| **0225** | [Implement Stack using Queues][225] | ST, Design, Q | ![][easy] | | |
| 542 | +| **0232** | [Implement Queue using Stacks][232] | ST, Design, Q | ![][easy] | | |
535 | 543 |
|
536 | 544 | <!---------------------------------{ Solution Table }--------------------------> |
537 | 545 |
|
|
857 | 865 | [217]: ./src/0201-0300/217%20-%20Contains%20Duplicate/ |
858 | 866 | [219]: ./src/0201-0300/219%20-%20Contains%20Duplicate%20II/ |
859 | 867 | [222]: ./src/0201-0300/222%20-%20Count%20Complete%20Tree%20Nodes/ |
| 868 | +[225]: ./src/0201-0300/225%20-%20Implement%20Stack%20using%20Queues/ |
| 869 | +[226]: ./src/0201-0300/226%20-%20Invert%20Binary%20Tree/ |
860 | 870 | [230]: ./src/0201-0300/230%20-%20Kth%20Smallest%20Element%20in%20a%20BST/ |
861 | 871 | [231]: ./src/0201-0300/231%20-%20Power%20of%20Two/ |
| 872 | +[232]: ./src/0201-0300/232%20-%20Implement%20Queue%20using%20Stacks/ |
862 | 873 | [236]: ./src/0201-0300/236%20-%20Lowest%20Common%20Ancestor%20of%20a%20Binary%20Tree/ |
863 | 874 | [239]: ./src/0201-0300/239%20-%20Sliding%20Window%20Maximum/ |
864 | 875 | [278]: ./src/0201-0300/278%20-%20First%20Bad%20Version/ |
|
0 commit comments