@@ -408,13 +408,14 @@ int binarySearch(int[] nums, int target){
408
408
-- -
409
409
410
410
# ### Tree
411
- | No. | Title | Solution | Difficulty | Time | Space | Topic |
412
- | ---------------------------------------------------------------------------------------------- - | :-------------------------------------------------------------------------------------------------------- :| :------------------------------------------------------------------------------------------------------ - :| ------------ | ------ | ---------------- - | ---------- - |
413
- | [0226 ](https:// kimi0230.github.io/ LeetcodeGolang/ Leetcode/ 0226. Invert- Binary- Tree) | [Invert Binary Tree](https:// leetcode.com/ problems/ invert- binary- tree/ ) | [Go](https:// github.com/ kimi0230/ LeetcodeGolang/ tree/ master/ Leetcode/ 0226. Invert- Binary- Tree) | Easy | O(n) | O(1 ) | Tree |
414
- | [0104 ](https:// kimi0230.github.io/ LeetcodeGolang/ Leetcode/ 0104. Maximum- Depth- of- Binary- Tree/ ) | [Maximum Depth of Binary Tree](https:// leetcode.com/ problems/ maximum- depth- of- binary- tree// description/ ) | [Go](https:// github.com/ kimi0230/ LeetcodeGolang/ tree/ master/ Leetcode/ 0104. Maximum- Depth- of- Binary- Tree) | Easy | O(n) | O(1 ) | Tree |
415
- | [0543 ](https:// kimi0230.github.io/ LeetcodeGolang/ Leetcode/ 0543. Diameter- of- Binary- Tree) | [Diameter of Binary Tree](https:// leetcode.com/ problems/ diameter- of- binary- tree/ ) | [Go](https:// github.com/ kimi0230/ LeetcodeGolang/ tree/ master/ Leetcode/ 0543. Diameter- of- Binary- Tree) | Easy | O(n) | O(n), O(log(n)) | Tree, DFS |
416
- | [0110 ](https:// kimi0230.github.io/ LeetcodeGolang/ Leetcode/ 0110. Balanced- Binary- Tree) | [Balanced Binary Tree](https:// leetcode.com/ problems/ balanced- binary- tree/ ) | [Go](https:// github.com/ kimi0230/ LeetcodeGolang/ tree/ master/ Leetcode/ 0110. Balanced- Binary- Tree) | Easy | O(n) | O(1 ) | Tree, DFS |
417
- | [0100 ](https:// kimi0230.github.io/ LeetcodeGolang/ Leetcode/ 0100. Same- Tree) | [Same Tree](https:// leetcode.com/ problems/ same- tree/ ) | [Go](https:// github.com/ kimi0230/ LeetcodeGolang/ tree/ master/ Leetcode/ 0100. Same- Tree) | Easy | O(n) | O(1 ) | Tree |
411
+ | No. | Title | Solution | Difficulty | Time | Space | Topic |
412
+ | -------------------------------------------------------------------------------------------------------------------------- - | :---------------------------------------------------------------------------------------------------------------------------------------------------------------- - :| :------------------------------------------------------------------------------------------------------------------------------------ :| ------------ | ------ | ---------------- - | ---------- - |
413
+ | [0226 ](https:// kimi0230.github.io/ LeetcodeGolang/ Leetcode/ 0226. Invert- Binary- Tree) | [Invert Binary Tree](https:// leetcode.com/ problems/ invert- binary- tree/ ) | [Go](https:// github.com/ kimi0230/ LeetcodeGolang/ tree/ master/ Leetcode/ 0226. Invert- Binary- Tree) | Easy | O(n) | O(1 ) | Tree |
414
+ | [0104 ](https:// kimi0230.github.io/ LeetcodeGolang/ Leetcode/ 0104. Maximum- Depth- of- Binary- Tree/ ) | [Maximum Depth of Binary Tree](https:// leetcode.com/ problems/ maximum- depth- of- binary- tree// description/ ) | [Go](https:// github.com/ kimi0230/ LeetcodeGolang/ tree/ master/ Leetcode/ 0104. Maximum- Depth- of- Binary- Tree) | Easy | O(n) | O(1 ) | Tree |
415
+ | [0543 ](https:// kimi0230.github.io/ LeetcodeGolang/ Leetcode/ 0543. Diameter- of- Binary- Tree) | [Diameter of Binary Tree](https:// leetcode.com/ problems/ diameter- of- binary- tree/ ) | [Go](https:// github.com/ kimi0230/ LeetcodeGolang/ tree/ master/ Leetcode/ 0543. Diameter- of- Binary- Tree) | Easy | O(n) | O(n), O(log(n)) | Tree, DFS |
416
+ | [0110 ](https:// kimi0230.github.io/ LeetcodeGolang/ Leetcode/ 0110. Balanced- Binary- Tree) | [Balanced Binary Tree](https:// leetcode.com/ problems/ balanced- binary- tree/ ) | [Go](https:// github.com/ kimi0230/ LeetcodeGolang/ tree/ master/ Leetcode/ 0110. Balanced- Binary- Tree) | Easy | O(n) | O(1 ) | Tree, DFS |
417
+ | [0100 ](https:// kimi0230.github.io/ LeetcodeGolang/ Leetcode/ 0100. Same- Tree) | [Same Tree](https:// leetcode.com/ problems/ same- tree/ ) | [Go](https:// github.com/ kimi0230/ LeetcodeGolang/ tree/ master/ Leetcode/ 0100. Same- Tree) | Easy | O(n) | O(1 ) | Tree |
418
+ | [0105 ](https:// kimi0230.github.io/ LeetcodeGolang/ Leetcode/ 0105. Construct- Binary- Tree- from - Preorder- and - Inorder- Traversal) | [Construct Binary Tree from Preorder and Inorder Traversal](https:// leetcode.com/ problems/ construct- binary- tree- from - preorder- and - inorder- traversal/ description/ ) | [Go](https:// github.com/ kimi0230/ LeetcodeGolang/ tree/ master/ Leetcode/ 0105. Construct- Binary- Tree- from - Preorder- and - Inorder- Traversal) | Medium | O(n) | O(n) | Array |
418
419
419
420
-- -
420
421
0 commit comments