Skip to content

Commit 431ff0b

Browse files
authored
Added tasks 101-114
1 parent f7bb869 commit 431ff0b

File tree

16 files changed

+448
-0
lines changed

16 files changed

+448
-0
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -560,6 +560,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
560560

561561
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
562562
|-|-|-|-|-|-
563+
| 0104 |[Maximum Depth of Binary Tree](src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_Space_O(H) | 0 | 100.00
563564

564565
#### Day 11 Containers and Libraries
565566

@@ -832,6 +833,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
832833

833834
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
834835
|-|-|-|-|-|-
836+
| 0102 |[Binary Tree Level Order Traversal](src/main/js/g0101_0200/s0102_binary_tree_level_order_traversal/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_Space_O(N) | 1 | 87.97
835837

836838
#### Day 7 Binary Search
837839

@@ -963,6 +965,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
963965

964966
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
965967
|-|-|-|-|-|-
968+
| 0101 |[Symmetric Tree](src/main/js/g0101_0200/s0101_symmetric_tree/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(N)_Space_O(log(N)) | 0 | 100.00
966969

967970
#### Day 16 Design
968971

@@ -1056,6 +1059,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10561059

10571060
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10581061
|-|-|-|-|-|-
1062+
| 0114 |[Flatten Binary Tree to Linked List](src/main/js/g0101_0200/s0114_flatten_binary_tree_to_linked_list/solution.js)| Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Linked_List, Big_O_Time_O(N)_Space_O(N) | 0 | 100.00
10591063
| 0024 |[Swap Nodes in Pairs](src/main/js/g0001_0100/s0024_swap_nodes_in_pairs/solution.js)| Medium | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_Space_O(1) | 1 | 100.00
10601064
| 0021 |[Merge Two Sorted Lists](src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_Space_O(m+n) | 0 | 100.00
10611065
| 0025 |[Reverse Nodes in k-Group](src/main/js/g0001_0100/s0025_reverse_nodes_in_k_group/solution.js)| Hard | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_Space_O(k) | 0 | 100.00
@@ -1065,6 +1069,8 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10651069
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10661070
|-|-|-|-|-|-
10671071
| 0094 |[Binary Tree Inorder Traversal](src/main/js/g0001_0100/s0094_binary_tree_inorder_traversal/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
1072+
| 0102 |[Binary Tree Level Order Traversal](src/main/js/g0101_0200/s0102_binary_tree_level_order_traversal/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_Space_O(N) | 1 | 87.97
1073+
| 0104 |[Maximum Depth of Binary Tree](src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_Space_O(H) | 0 | 100.00
10681074
| 0098 |[Validate Binary Search Tree](src/main/js/g0001_0100/s0098_validate_binary_search_tree/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(N)_Space_O(log(N)) | 0 | 100.00
10691075

10701076
#### Udemy Trie and Heap
@@ -1168,6 +1174,9 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
11681174

11691175
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11701176
|-|-|-|-|-|-
1177+
| 0102 |[Binary Tree Level Order Traversal](src/main/js/g0101_0200/s0102_binary_tree_level_order_traversal/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_Space_O(N) | 1 | 87.97
1178+
| 0104 |[Maximum Depth of Binary Tree](src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_Space_O(H) | 0 | 100.00
1179+
| 0101 |[Symmetric Tree](src/main/js/g0101_0200/s0101_symmetric_tree/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(N)_Space_O(log(N)) | 0 | 100.00
11711180

11721181
#### Day 12 Tree
11731182

@@ -1270,6 +1279,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
12701279

12711280
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
12721281
|-|-|-|-|-|-
1282+
| 0105 |[Construct Binary Tree from Preorder and Inorder Traversal](src/main/js/g0101_0200/s0105_construct_binary_tree_from_preorder_and_inorder_traversal/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Tree, Binary_Tree, Divide_and_Conquer, Big_O_Time_O(N)_Space_O(N) | 1 | 98.60
12731283

12741284
#### Day 16 Tree
12751285

@@ -1305,6 +1315,11 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
13051315

13061316
| # | Title | Difficulty | Tag | Time, ms | Time, %
13071317
|------|----------------|-------------|-------------|----------|---------
1318+
| 0114 |[Flatten Binary Tree to Linked List](src/main/js/g0101_0200/s0114_flatten_binary_tree_to_linked_list/solution.js)| Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Linked_List, Udemy_Linked_List, Big_O_Time_O(N)_Space_O(N) | 0 | 100.00
1319+
| 0105 |[Construct Binary Tree from Preorder and Inorder Traversal](src/main/js/g0101_0200/s0105_construct_binary_tree_from_preorder_and_inorder_traversal/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Tree, Binary_Tree, Divide_and_Conquer, Data_Structure_II_Day_15_Tree, Big_O_Time_O(N)_Space_O(N) | 1 | 98.60
1320+
| 0104 |[Maximum Depth of Binary Tree](src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Data_Structure_I_Day_11_Tree, Programming_Skills_I_Day_10_Linked_List_and_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(N)_Space_O(H) | 0 | 100.00
1321+
| 0102 |[Binary Tree Level Order Traversal](src/main/js/g0101_0200/s0102_binary_tree_level_order_traversal/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree, Data_Structure_I_Day_11_Tree, Level_1_Day_6_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(N)_Space_O(N) | 1 | 87.97
1322+
| 0101 |[Symmetric Tree](src/main/js/g0101_0200/s0101_symmetric_tree/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Data_Structure_I_Day_14_Tree, Level_1_Day_8_Binary_Search_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(N)_Space_O(log(N)) | 0 | 100.00
13081323
| 0098 |[Validate Binary Search Tree](src/main/js/g0001_0100/s0098_validate_binary_search_tree/solution.js)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Data_Structure_I_Day_14_Tree, Level_1_Day_8_Binary_Search_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(N)_Space_O(log(N)) | 0 | 100.00
13091324
| 0096 |[Unique Binary Search Trees](src/main/js/g0001_0100/s0096_unique_binary_search_trees/solution.js)| Medium | Dynamic_Programming, Math, Tree, Binary_Tree, Binary_Search_Tree, Dynamic_Programming_I_Day_11, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
13101325
| 0094 |[Binary Tree Inorder Traversal](src/main/js/g0001_0100/s0094_binary_tree_inorder_traversal/solution.js)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Data_Structure_I_Day_10_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
101\. Symmetric Tree
2+
3+
Easy
4+
5+
Given the `root` of a binary tree, _check whether it is a mirror of itself_ (i.e., symmetric around its center).
6+
7+
**Example 1:**
8+
9+
![](https://assets.leetcode.com/uploads/2021/02/19/symtree1.jpg)
10+
11+
**Input:** root = [1,2,2,3,4,4,3]
12+
13+
**Output:** true
14+
15+
**Example 2:**
16+
17+
![](https://assets.leetcode.com/uploads/2021/02/19/symtree2.jpg)
18+
19+
**Input:** root = [1,2,2,null,3,null,3]
20+
21+
**Output:** false
22+
23+
**Constraints:**
24+
25+
* The number of nodes in the tree is in the range `[1, 1000]`.
26+
* `-100 <= Node.val <= 100`
27+
28+
**Follow up:** Could you solve it both recursively and iteratively?
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Depth_First_Search #Tree #Binary_Tree
2+
// #Binary_Search_Tree #Data_Structure_I_Day_14_Tree #Level_1_Day_8_Binary_Search_Tree
3+
// #Udemy_Tree_Stack_Queue #Big_O_Time_O(N)_Space_O(log(N))
4+
// #2024_12_12_Time_0_ms_(100.00%)_Space_53.7_MB_(22.50%)
5+
6+
/**
7+
* Definition for a binary tree node.
8+
* function TreeNode(val, left, right) {
9+
* this.val = (val===undefined ? 0 : val)
10+
* this.left = (left===undefined ? null : left)
11+
* this.right = (right===undefined ? null : right)
12+
* }
13+
*/
14+
/**
15+
* @param {TreeNode} root
16+
* @return {boolean}
17+
*/
18+
var isSymmetric = function isSymmetric(root) {
19+
if (!root) {
20+
return true
21+
}
22+
return helper(root.left, root.right)
23+
};
24+
25+
var helper = function(leftNode, rightNode) {
26+
if (!leftNode || !rightNode) {
27+
return leftNode === null && rightNode === null
28+
}
29+
if (leftNode.val !== rightNode.val) {
30+
return false
31+
}
32+
return helper(leftNode.left, rightNode.right) && helper(leftNode.right, rightNode.left)
33+
};
34+
35+
export { isSymmetric }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
102\. Binary Tree Level Order Traversal
2+
3+
Medium
4+
5+
Given the `root` of a binary tree, return _the level order traversal of its nodes' values_. (i.e., from left to right, level by level).
6+
7+
**Example 1:**
8+
9+
![](https://assets.leetcode.com/uploads/2021/02/19/tree1.jpg)
10+
11+
**Input:** root = [3,9,20,null,null,15,7]
12+
13+
**Output:** [[3],[9,20],[15,7]]
14+
15+
**Example 2:**
16+
17+
**Input:** root = [1]
18+
19+
**Output:** [[1]]
20+
21+
**Example 3:**
22+
23+
**Input:** root = []
24+
25+
**Output:** []
26+
27+
**Constraints:**
28+
29+
* The number of nodes in the tree is in the range `[0, 2000]`.
30+
* `-1000 <= Node.val <= 1000`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Breadth_First_Search #Tree
2+
// #Binary_Tree #Data_Structure_I_Day_11_Tree #Level_1_Day_6_Tree #Udemy_Tree_Stack_Queue
3+
// #Big_O_Time_O(N)_Space_O(N) #2024_12_13_Time_1_ms_(87.97%)_Space_54.7_MB_(69.27%)
4+
5+
/**
6+
* Definition for a binary tree node.
7+
* function TreeNode(val, left, right) {
8+
* this.val = (val===undefined ? 0 : val)
9+
* this.left = (left===undefined ? null : left)
10+
* this.right = (right===undefined ? null : right)
11+
* }
12+
*/
13+
/**
14+
* @param {TreeNode} root
15+
* @return {number[][]}
16+
*/
17+
var levelOrder = function(root) {
18+
const result = []
19+
if (!root) {
20+
return result
21+
}
22+
23+
const queue = []
24+
queue.push(root)
25+
queue.push(null)
26+
let level = []
27+
28+
while (queue.length > 0) {
29+
root = queue.shift() // Remove the first element
30+
while (queue.length > 0 && root !== null) {
31+
level.push(root.val)
32+
if (root.left) {
33+
queue.push(root.left)
34+
}
35+
if (root.right) {
36+
queue.push(root.right)
37+
}
38+
root = queue.shift()
39+
}
40+
result.push(level)
41+
level = []
42+
if (queue.length > 0) {
43+
queue.push(null)
44+
}
45+
}
46+
47+
return result
48+
};
49+
50+
export { levelOrder }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
104\. Maximum Depth of Binary Tree
2+
3+
Easy
4+
5+
Given the `root` of a binary tree, return _its maximum depth_.
6+
7+
A binary tree's **maximum depth** is the number of nodes along the longest path from the root node down to the farthest leaf node.
8+
9+
**Example 1:**
10+
11+
![](https://assets.leetcode.com/uploads/2020/11/26/tmp-tree.jpg)
12+
13+
**Input:** root = [3,9,20,null,null,15,7]
14+
15+
**Output:** 3
16+
17+
**Example 2:**
18+
19+
**Input:** root = [1,null,2]
20+
21+
**Output:** 2
22+
23+
**Constraints:**
24+
25+
* The number of nodes in the tree is in the range <code>[0, 10<sup>4</sup>]</code>.
26+
* `-100 <= Node.val <= 100`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// #Easy #Top_100_Liked_Questions #Top_Interview_Questions #Depth_First_Search #Breadth_First_Search
2+
// #Tree #Binary_Tree #Data_Structure_I_Day_11_Tree
3+
// #Programming_Skills_I_Day_10_Linked_List_and_Tree #Udemy_Tree_Stack_Queue
4+
// #Big_O_Time_O(N)_Space_O(H) #2024_12_13_Time_0_ms_(100.00%)_Space_52.6_MB_(22.16%)
5+
6+
/**
7+
* Definition for a binary tree node.
8+
* function TreeNode(val, left, right) {
9+
* this.val = (val===undefined ? 0 : val)
10+
* this.left = (left===undefined ? null : left)
11+
* this.right = (right===undefined ? null : right)
12+
* }
13+
*/
14+
/**
15+
* @param {TreeNode} root
16+
* @return {number}
17+
*/
18+
var maxDepth = function(root) {
19+
return findDepth(root, 0)
20+
};
21+
22+
var findDepth = function(node, currentDepth) {
23+
if (!node) {
24+
return 0
25+
}
26+
currentDepth++
27+
return 1 + Math.max(findDepth(node.left, currentDepth), findDepth(node.right, currentDepth))
28+
};
29+
30+
export { maxDepth }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
105\. Construct Binary Tree from Preorder and Inorder Traversal
2+
3+
Medium
4+
5+
Given two integer arrays `preorder` and `inorder` where `preorder` is the preorder traversal of a binary tree and `inorder` is the inorder traversal of the same tree, construct and return _the binary tree_.
6+
7+
**Example 1:**
8+
9+
![](https://assets.leetcode.com/uploads/2021/02/19/tree.jpg)
10+
11+
**Input:** preorder = [3,9,20,15,7], inorder = [9,3,15,20,7]
12+
13+
**Output:** [3,9,20,null,null,15,7]
14+
15+
**Example 2:**
16+
17+
**Input:** preorder = [-1], inorder = [-1]
18+
19+
**Output:** [-1]
20+
21+
**Constraints:**
22+
23+
* `1 <= preorder.length <= 3000`
24+
* `inorder.length == preorder.length`
25+
* `-3000 <= preorder[i], inorder[i] <= 3000`
26+
* `preorder` and `inorder` consist of **unique** values.
27+
* Each value of `inorder` also appears in `preorder`.
28+
* `preorder` is **guaranteed** to be the preorder traversal of the tree.
29+
* `inorder` is **guaranteed** to be the inorder traversal of the tree.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Array #Hash_Table #Tree #Binary_Tree
2+
// #Divide_and_Conquer #Data_Structure_II_Day_15_Tree #Big_O_Time_O(N)_Space_O(N)
3+
// #2024_12_13_Time_1_ms_(98.60%)_Space_53.9_MB_(86.87%)
4+
5+
import { TreeNode } from '../../com_github_leetcode/treenode';
6+
7+
/**
8+
* Definition for a binary tree node.
9+
* function TreeNode(val, left, right) {
10+
* this.val = (val===undefined ? 0 : val)
11+
* this.left = (left===undefined ? null : left)
12+
* this.right = (right===undefined ? null : right)
13+
* }
14+
*/
15+
/**
16+
* @param {number[]} preorder
17+
* @param {number[]} inorder
18+
* @return {TreeNode}
19+
*/
20+
var buildTree = function(preorder, inorder) {
21+
let j = 0 // Tracks the index in the preorder array
22+
const map = new Map() // Maps values to their indices in the inorder array
23+
24+
// Populate the map with indices of the inorder array
25+
for (let i = 0; i < inorder.length; i++) {
26+
map.set(inorder[i], i)
27+
}
28+
29+
// Helper function to construct the tree
30+
const build = (start, end) => {
31+
if (start > end || j >= preorder.length) {
32+
return null
33+
}
34+
35+
const value = preorder[j++]
36+
const index = map.get(value)
37+
const node = new TreeNode(value)
38+
39+
// Recursively build left and right subtrees
40+
node.left = build(start, index - 1)
41+
node.right = build(index + 1, end)
42+
43+
return node
44+
}
45+
46+
return build(0, inorder.length - 1)
47+
};
48+
49+
export { buildTree }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
114\. Flatten Binary Tree to Linked List
2+
3+
Medium
4+
5+
Given the `root` of a binary tree, flatten the tree into a "linked list":
6+
7+
* The "linked list" should use the same `TreeNode` class where the `right` child pointer points to the next node in the list and the `left` child pointer is always `null`.
8+
* The "linked list" should be in the same order as a [**pre-order** **traversal**](https://en.wikipedia.org/wiki/Tree_traversal#Pre-order,_NLR) of the binary tree.
9+
10+
**Example 1:**
11+
12+
![](https://assets.leetcode.com/uploads/2021/01/14/flaten.jpg)
13+
14+
**Input:** root = [1,2,5,3,4,null,6]
15+
16+
**Output:** [1,null,2,null,3,null,4,null,5,null,6]
17+
18+
**Example 2:**
19+
20+
**Input:** root = []
21+
22+
**Output:** []
23+
24+
**Example 3:**
25+
26+
**Input:** root = [0]
27+
28+
**Output:** [0]
29+
30+
**Constraints:**
31+
32+
* The number of nodes in the tree is in the range `[0, 2000]`.
33+
* `-100 <= Node.val <= 100`
34+
35+
**Follow up:** Can you flatten the tree in-place (with `O(1)` extra space)?

0 commit comments

Comments
 (0)