You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 094 |[Binary Tree Inorder Traversal](https://leetcode.com/problems/binary-tree-inorder-traversal/)|[Java](./Java/binary-tree-inorder-traversal.java)|_O(n)_|_O(logn)_| Medium | Binary Tree, Stack, HashTable ||
136
-
| 144 |[Binary Tree Preorder Traversal](https://leetcode.com/problems/binary-tree-preorder-traversal/)|[Java](./Java/binary-tree-preorder-traversal.java)|_O(n)_|_O(logn)_| Medium | Binary Tree, Stack ||
137
-
| 145 |[Binary Tree Postorder Traversal](https://leetcode.com/problems/binary-tree-postorder-traversal/)|[Java](./Java/binary-tree-postorder-traversal.java)|_O(n)_|_O(logn)_| Hard | Binary Tree, Stack ||
138
-
| 103 |[ZigZag Level Order](https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal/)|[JavaScript](./JavaScript/Binary-Tree-ZigZag-Traversal.js)|_O(n)_|_O(n)_| Medium | Binary Tree ||
139
-
| 129 |[Sum Root to Leaf Numbers](https://leetcode.com/problems/sum-root-to-leaf-numbers/)|[Java](./Java/sum-root-to-leaf-numbers.java)|_O(n)_|_O(logn)_| Medium | Binary Tree, Depth First Search ||
140
-
| 307 |[Range Sum Query - Mutable](https://leetcode.com/problems/range-sum-query-mutable/)|[Java](./Java/Range-Sum-Query-Mutable.java)|_O(logn)_|_O(n)_| Medium | Segment Tree ||
133
+
| # | Title | Solution | Time | Space | Difficulty | Tag | Note |
| 144 |[Binary Tree Preorder Traversal](https://leetcode.com/problems/binary-tree-preorder-traversal/)|[Java](./Java/binary-tree-preorder-traversal.java)|_O(n)_|_O(logn)_| Medium | Binary Tree, Stack ||
138
+
| 145 |[Binary Tree Postorder Traversal](https://leetcode.com/problems/binary-tree-postorder-traversal/)|[Java](./Java/binary-tree-postorder-traversal.java)|_O(n)_|_O(logn)_| Hard | Binary Tree, Stack ||
139
+
| 103 |[ZigZag Level Order](https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal/)|[JavaScript](./JavaScript/Binary-Tree-ZigZag-Traversal.js)|_O(n)_|_O(n)_| Medium | Binary Tree ||
140
+
| 129 |[Sum Root to Leaf Numbers](https://leetcode.com/problems/sum-root-to-leaf-numbers/)|[Java](./Java/sum-root-to-leaf-numbers.java)|_O(n)_|_O(logn)_| Medium | Binary Tree, Depth First Search ||
141
+
| 307 |[Range Sum Query - Mutable](https://leetcode.com/problems/range-sum-query-mutable/)|[Java](./Java/Range-Sum-Query-Mutable.java)|_O(logn)_|_O(n)_| Medium | Segment Tree ||
142
+
| 919 |[Complete Binary Tree Inserter](https://leetcode.com/problems/complete-binary-tree-inserter/)|[Java](./Java/complete-binary-tree-inserter.java)|_O(n)_|_O(n)_| Medium | Tree ||
0 commit comments