Skip to content

Commit 0fce97b

Browse files
committed
code is Added
1 parent dcb704c commit 0fce97b

File tree

20 files changed

+371
-0
lines changed

20 files changed

+371
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
import java.util.HashMap;
2+
import java.util.Map;
3+
4+
/**
5+
* Definition for a binary tree node.
6+
* public class TreeNode {
7+
* int val;
8+
* TreeNode left;
9+
* TreeNode right;
10+
* TreeNode() {}
11+
* TreeNode(int val) { this.val = val; }
12+
* TreeNode(int val, TreeNode left, TreeNode right) {
13+
* this.val = val;
14+
* this.left = left;
15+
* this.right = right;
16+
* }
17+
* }
18+
*/
19+
class ConstructBinaryTreeFromInorderAndPostorderTraversal {
20+
int postIndex;
21+
int[] postorder;
22+
int[] inorder;
23+
Map<Integer, Integer> indexMap = new HashMap<>();
24+
25+
public TreeNode buildTree(int[] inorder, int[] postorder) {
26+
this.inorder = inorder;
27+
this.postorder = postorder;
28+
postIndex = postorder.length - 1;
29+
30+
int index = 0;
31+
for (Integer val : inorder) {
32+
indexMap.put(val, index++);
33+
}
34+
35+
return helper(0, inorder.length - 1);
36+
}
37+
38+
private TreeNode helper(int leftIndex, int rightIndex) {
39+
if (leftIndex > rightIndex) {
40+
return null;
41+
}
42+
43+
int rootVal = postorder[postIndex];
44+
TreeNode root = new TreeNode(rootVal);
45+
int index = indexMap.get(rootVal);
46+
47+
postIndex--;
48+
root.right = helper(index + 1, rightIndex);
49+
root.left = helper(leftIndex, index - 1);
50+
return root;
51+
}
52+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# [106. Construct Binary Tree from Inorder and Postorder Traversal](https://leetcode.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/)
2+
3+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/**
2+
* Definition for a binary tree node.
3+
* public class TreeNode {
4+
* int val;
5+
* TreeNode left;
6+
* TreeNode right;
7+
* TreeNode() {}
8+
* TreeNode(int val) { this.val = val; }
9+
* TreeNode(int val, TreeNode left, TreeNode right) {
10+
* this.val = val;
11+
* this.left = left;
12+
* this.right = right;
13+
* }
14+
* }
15+
*/
16+
class ConvertSortedArrayToBinarySearchTree {
17+
private TreeNode toBST(int[] nums, int sIdx, int eIdx) {
18+
if (sIdx > eIdx) return null;
19+
int mIdx = (sIdx + eIdx) / 2;
20+
TreeNode root = new TreeNode(nums[mIdx]);
21+
root.left = toBST(nums, sIdx, mIdx - 1);
22+
root.right = toBST(nums, mIdx + 1, eIdx);
23+
return root;
24+
}
25+
26+
public TreeNode sortedArrayToBST(int[] nums) {
27+
return toBST(nums, 0, nums.length - 1);
28+
}
29+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [108. Convert Sorted Array to Binary Search Tree](https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/**
2+
* Definition for singly-linked list.
3+
* public class ListNode {
4+
* int val;
5+
* ListNode next;
6+
* ListNode() {}
7+
* ListNode(int val) { this.val = val; }
8+
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
9+
* }
10+
*/
11+
/**
12+
* Definition for a binary tree node.
13+
* public class TreeNode {
14+
* int val;
15+
* TreeNode left;
16+
* TreeNode right;
17+
* TreeNode() {}
18+
* TreeNode(int val) { this.val = val; }
19+
* TreeNode(int val, TreeNode left, TreeNode right) {
20+
* this.val = val;
21+
* this.left = left;
22+
* this.right = right;
23+
* }
24+
* }
25+
*/
26+
class ConvertSortedListToBinarySearchTree {
27+
private ListNode preMid(ListNode head) {
28+
ListNode slow = head, fast = head.next, pre = head;
29+
while (fast != null && fast.next != null) {
30+
pre = slow;
31+
slow = slow.next;
32+
fast = fast.next.next;
33+
}
34+
return pre;
35+
}
36+
37+
public TreeNode sortedListToBST(ListNode head) {
38+
if (head == null) return null;
39+
if (head.next == null) return new TreeNode(head.val);
40+
ListNode preMid = preMid(head);
41+
ListNode mid = preMid.next;
42+
preMid.next = null;
43+
TreeNode t = new TreeNode(mid.val);
44+
t.left = sortedListToBST(head);
45+
t.right = sortedListToBST(mid.next);
46+
return t;
47+
}
48+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [109. Convert Sorted List to Binary Search Tree](https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/**
2+
* Definition for a binary tree node.
3+
* public class TreeNode {
4+
* int val;
5+
* TreeNode left;
6+
* TreeNode right;
7+
* TreeNode() {}
8+
* TreeNode(int val) { this.val = val; }
9+
* TreeNode(int val, TreeNode left, TreeNode right) {
10+
* this.val = val;
11+
* this.left = left;
12+
* this.right = right;
13+
* }
14+
* }
15+
*/
16+
class BalancedBinaryTree {
17+
private boolean result = true;
18+
19+
private int maxDepth(TreeNode root) {
20+
if (root == null) return 0;
21+
int l = maxDepth(root.left);
22+
int r = maxDepth(root.right);
23+
if (Math.abs(l - r) > 1) result = false;
24+
return Math.max(l, r) + 1;
25+
}
26+
27+
public boolean isBalanced(TreeNode root) {
28+
maxDepth(root);
29+
return result;
30+
}
31+
}

0110.balanced-binary-tree/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [110. Balanced Binary Tree](https://leetcode.com/problems/balanced-binary-tree/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/**
2+
* Definition for a binary tree node.
3+
* public class TreeNode {
4+
* int val;
5+
* TreeNode left;
6+
* TreeNode right;
7+
* TreeNode() {}
8+
* TreeNode(int val) { this.val = val; }
9+
* TreeNode(int val, TreeNode left, TreeNode right) {
10+
* this.val = val;
11+
* this.left = left;
12+
* this.right = right;
13+
* }
14+
* }
15+
*/
16+
class MinimumDepthOfBinaryTree {
17+
public int minDepth(TreeNode root) {
18+
if (root == null) return 0;
19+
int left = minDepth(root.left);
20+
int right = minDepth(root.right);
21+
if (left == 0 || right == 0) return left + right + 1;
22+
return Math.min(left, right) + 1;
23+
}
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [111. Minimum Depth of Binary Tree](https://leetcode.com/problems/minimum-depth-of-binary-tree/)
2+

0112.path-sum/PathSum.java

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/**
2+
* Definition for a binary tree node.
3+
* public class TreeNode {
4+
* int val;
5+
* TreeNode left;
6+
* TreeNode right;
7+
* TreeNode() {}
8+
* TreeNode(int val) { this.val = val; }
9+
* TreeNode(int val, TreeNode left, TreeNode right) {
10+
* this.val = val;
11+
* this.left = left;
12+
* this.right = right;
13+
* }
14+
* }
15+
*/
16+
class PathSum {
17+
public boolean hasPathSum(TreeNode root, int targetSum) {
18+
if (root == null) return false;
19+
if (root.left == null && root.right == null && root.val == targetSum) return true;
20+
return hasPathSum(root.left, targetSum - root.val) || hasPathSum(root.right, targetSum - root.val);
21+
}
22+
}

0112.path-sum/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [112. Path Sum](https://leetcode.com/problems/path-sum/)
2+

0113.path-sum-ii/PathSumIi.java

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
/**
5+
* Definition for a binary tree node.
6+
* public class TreeNode {
7+
* int val;
8+
* TreeNode left;
9+
* TreeNode right;
10+
* TreeNode() {}
11+
* TreeNode(int val) { this.val = val; }
12+
* TreeNode(int val, TreeNode left, TreeNode right) {
13+
* this.val = val;
14+
* this.left = left;
15+
* this.right = right;
16+
* }
17+
* }
18+
*/
19+
class PathSumIi {
20+
private void pathSum(TreeNode root, int sum, List<Integer> sol, List<List<Integer>> res) {
21+
if (root == null) return;
22+
sol.add(root.val);
23+
if (root.left == null && root.right == null && sum == root.val) {
24+
res.add(new ArrayList<>(sol));
25+
} else {
26+
pathSum(root.left, sum - root.val, sol, res);
27+
pathSum(root.right, sum - root.val, sol, res);
28+
}
29+
30+
sol.remove(sol.size() - 1);
31+
}
32+
33+
public List<List<Integer>> pathSum(TreeNode root, int targetSum) {
34+
List<List<Integer>> res = new ArrayList<>();
35+
pathSum(root, targetSum, new ArrayList<>(), res);
36+
return res;
37+
}
38+
}

0113.path-sum-ii/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [113. Path Sum II](https://leetcode.com/problems/path-sum-ii/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/**
2+
* Definition for a binary tree node.
3+
* public class TreeNode {
4+
* int val;
5+
* TreeNode left;
6+
* TreeNode right;
7+
* TreeNode() {}
8+
* TreeNode(int val) { this.val = val; }
9+
* TreeNode(int val, TreeNode left, TreeNode right) {
10+
* this.val = val;
11+
* this.left = left;
12+
* this.right = right;
13+
* }
14+
* }
15+
*/
16+
class FlattenBinaryTreeToLinkedList {
17+
TreeNode prev = null;
18+
19+
public void flatten(TreeNode root) {
20+
if (root == null) return;
21+
flatten(root.right);
22+
flatten(root.left);
23+
root.left = null;
24+
root.right = prev;
25+
prev = root;
26+
}
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [114. Flatten Binary Tree to Linked List](https://leetcode.com/problems/flatten-binary-tree-to-linked-list/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*
2+
// Definition for a Node.
3+
class Node {
4+
public int val;
5+
public Node left;
6+
public Node right;
7+
public Node next;
8+
9+
public Node() {}
10+
11+
public Node(int _val) {
12+
val = _val;
13+
}
14+
15+
public Node(int _val, Node _left, Node _right, Node _next) {
16+
val = _val;
17+
left = _left;
18+
right = _right;
19+
next = _next;
20+
}
21+
};
22+
*/
23+
24+
class PopulatingNextRightPointersInEachNode {
25+
public NextNode connect(NextNode root) {
26+
if (root == null) return null;
27+
if (root.left != null) root.left.next = root.right;
28+
if (root.right != null && root.next != null) root.right.next = root.next.left;
29+
connect(root.left);
30+
connect(root.right);
31+
return root;
32+
}
33+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [116. Populating Next Right Pointers in Each Node](https://leetcode.com/problems/populating-next-right-pointers-in-each-node/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
/*
2+
// Definition for a Node.
3+
class Node {
4+
public int val;
5+
public Node left;
6+
public Node right;
7+
public Node next;
8+
9+
public Node() {}
10+
11+
public Node(int _val) {
12+
val = _val;
13+
}
14+
15+
public Node(int _val, Node _left, Node _right, Node _next) {
16+
val = _val;
17+
left = _left;
18+
right = _right;
19+
next = _next;
20+
}
21+
};
22+
*/
23+
24+
class Solution {
25+
public Node connect(Node root) {
26+
Node dummyHead = new Node(0);
27+
Node pre = dummyHead;
28+
Node res = root;
29+
while (root != null) {
30+
if (root.left != null) {
31+
pre.next = root.left;
32+
pre = pre.next;
33+
}
34+
if (root.right != null) {
35+
pre.next = root.right;
36+
pre = pre.next;
37+
}
38+
root = root.next;
39+
if (root == null) {
40+
pre = dummyHead;
41+
root = dummyHead.next;
42+
dummyHead.next = null;
43+
}
44+
}
45+
return res;
46+
}
47+
}

0 commit comments

Comments
 (0)