Skip to content

Commit 95e8f21

Browse files
committed
Solution is Added
1 parent 0036781 commit 95e8f21

File tree

26 files changed

+446
-0
lines changed

26 files changed

+446
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class LongestRepeatingCharacterReplacement {
2+
public int characterReplacement(String s, int k) {
3+
int[] count = new int[26];
4+
int start = 0, maxCount = 0, maxLength = 0;
5+
for (int end = 0; end < s.length(); end++) {
6+
maxCount = Math.max(maxCount, ++count[s.charAt(end) - 'A']);
7+
while (end - start + 1 - maxCount > k) {
8+
count[s.charAt(start) - 'A']--;
9+
start++;
10+
}
11+
maxLength = Math.max(maxLength, end - start + 1);
12+
}
13+
return maxLength;
14+
}
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [424. Longest Repeating Character Replacement](https://leetcode.com/problems/longest-repeating-character-replacement/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
/*
2+
// Definition for a QuadTree node.
3+
class Node {
4+
public boolean val;
5+
public boolean isLeaf;
6+
public Node topLeft;
7+
public Node topRight;
8+
public Node bottomLeft;
9+
public Node bottomRight;
10+
11+
12+
public Node() {
13+
this.val = false;
14+
this.isLeaf = false;
15+
this.topLeft = null;
16+
this.topRight = null;
17+
this.bottomLeft = null;
18+
this.bottomRight = null;
19+
}
20+
21+
public Node(boolean val, boolean isLeaf) {
22+
this.val = val;
23+
this.isLeaf = isLeaf;
24+
this.topLeft = null;
25+
this.topRight = null;
26+
this.bottomLeft = null;
27+
this.bottomRight = null;
28+
}
29+
30+
public Node(boolean val, boolean isLeaf, Node topLeft, Node topRight, Node bottomLeft, Node bottomRight) {
31+
this.val = val;
32+
this.isLeaf = isLeaf;
33+
this.topLeft = topLeft;
34+
this.topRight = topRight;
35+
this.bottomLeft = bottomLeft;
36+
this.bottomRight = bottomRight;
37+
}
38+
};
39+
*/
40+
41+
class ConstructQuadTree {
42+
public QuadNode construct(int[][] grid) {
43+
return dfs(grid, 0, 0, grid.length, grid.length);
44+
}
45+
46+
public QuadNode dfs(int[][] grid, int r0, int c0, int r1, int c1) {
47+
boolean same = true;
48+
for (int i = r0; i < r1; i++) {
49+
for (int j = c0; j < c1; j++) {
50+
if (grid[i][j] != grid [r0][c0]) {
51+
same = false;
52+
break;
53+
}
54+
}
55+
if (!same) {
56+
break;
57+
}
58+
}
59+
60+
if (same)
61+
return new QuadNode(grid[r0][c0] == 1, true);
62+
63+
return new QuadNode(
64+
true,
65+
false,
66+
dfs(grid, r0, c0, (r0 + r1) / 2, (c0 + c1) / 2),
67+
dfs(grid, r0, (c0 + c1) / 2, (r0 + r1) / 2, c1),
68+
dfs(grid, (r0 + r1) / 2, c0, r1, (c0 + c1) / 2),
69+
dfs(grid, (r0 + r1) / 2, (c0 + c1) / 2, r1, c1)
70+
);
71+
}
72+
}

0427.construct-quad-tree/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [427. Construct Quad Tree](https://leetcode.com/problems/construct-quad-tree/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n^2\log n)$. $T(n)=4T(\frac{n}{2})+O(n^2)$. According to master theorem, the time complexity is $O(n^2\log n)$.
7+
- Space Complexity: $O(\log n)$. Every recursion has half of `n`, so the space complexity is $O(\log n)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/*
2+
// Definition for a Node.
3+
class Node {
4+
public int val;
5+
public List<Node> children;
6+
7+
public Node() {}
8+
9+
public Node(int _val) {
10+
val = _val;
11+
}
12+
13+
public Node(int _val, List<Node> _children) {
14+
val = _val;
15+
children = _children;
16+
}
17+
};
18+
*/
19+
20+
import java.util.ArrayList;
21+
import java.util.List;
22+
23+
class NAryTreeLevelOrderTraversal {
24+
private final List<List<Integer>> res = new ArrayList<>();
25+
26+
private void BFS(Node root, int level) {
27+
if (root == null) return;
28+
List<Integer> levelList;
29+
if (res.size() < level + 1) {
30+
levelList = new ArrayList<>();
31+
levelList.add(root.val);
32+
res.add(levelList);
33+
} else {
34+
levelList = res.get(level);
35+
levelList.add(root.val);
36+
res.remove(level);
37+
res.add(level, levelList);
38+
}
39+
if (root.children != null) {
40+
for (Node node : root.children) {
41+
BFS(node, level + 1);
42+
}
43+
}
44+
}
45+
46+
public List<List<Integer>> levelOrder(Node root) {
47+
BFS(root, 0);
48+
return res;
49+
}
50+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [429. N-ary Tree Level Order Traversal](https://leetcode.com/problems/n-ary-tree-level-order-traversal/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import java.util.*;
2+
3+
class MinimumGeneticMutation {
4+
public int minMutation(String start, String end, String[] bank) {
5+
Queue<String> queue = new LinkedList<>();
6+
Set<String> seen = new HashSet<>();
7+
queue.add(start);
8+
seen.add(start);
9+
10+
int steps = 0;
11+
12+
while (!queue.isEmpty()) {
13+
int nodesInQueue = queue.size();
14+
for (int j = 0; j < nodesInQueue; j++) {
15+
String node = queue.remove();
16+
if (node.equals(end)) return steps;
17+
for (char c : new char[]{'A', 'C', 'G', 'T'}) {
18+
for (int i = 0; i < node.length(); i++) {
19+
String neighbor = node.substring(0, i) + c + node.substring(i + 1);
20+
if (!seen.contains(neighbor) && Arrays.asList(bank).contains(neighbor)) {
21+
queue.add(neighbor);
22+
seen.add(neighbor);
23+
}
24+
}
25+
}
26+
}
27+
steps++;
28+
}
29+
30+
return -1;
31+
}
32+
}
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [433. Minimum Genetic Mutation](https://leetcode.com/problems/minimum-genetic-mutation/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import java.util.Arrays;
2+
import java.util.Comparator;
3+
4+
class NonOverlappingIntervals {
5+
public int eraseOverlapIntervals(int[][] intervals) {
6+
if (intervals.length == 0) {
7+
return 0;
8+
}
9+
Arrays.sort(intervals, Comparator.comparingInt(o -> o[1]));
10+
int cnt = 1;
11+
int end = intervals[0][1];
12+
for (int i = 1; i < intervals.length; i++) {
13+
if (intervals[i][0] < end) {
14+
continue;
15+
}
16+
end = intervals[i][1];
17+
cnt++;
18+
}
19+
return intervals.length - cnt;
20+
}
21+
}
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [435. Non-overlapping Intervals](https://leetcode.com/problems/non-overlapping-intervals/)
2+

0437.path-sum-iii/PathSumIii.java

+29
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 PathSumIii {
17+
private int pathSumStartWithRoot(TreeNode root, long sum) {
18+
if (root == null) return 0;
19+
int ret = 0;
20+
if (root.val == sum) ret++;
21+
ret += pathSumStartWithRoot(root.left, sum - root.val) + pathSumStartWithRoot(root.right, sum - root.val);
22+
return ret;
23+
}
24+
25+
public int pathSum(TreeNode root, int targetSum) {
26+
if (root == null) return 0;
27+
return pathSumStartWithRoot(root, targetSum) + pathSum(root.left, targetSum) + pathSum(root.right, targetSum);
28+
}
29+
}

0437.path-sum-iii/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [437. Path Sum III](https://leetcode.com/problems/path-sum-iii/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import java.util.*;
2+
3+
class FindAllAnagramsInAString {
4+
public List<Integer> findAnagrams(String s, String p) {
5+
int n = s.length(), m = p.length();
6+
7+
if (n < m)
8+
return new ArrayList<>();
9+
10+
List<Integer> res = new ArrayList<>();
11+
int[] sCount = new int[26];
12+
int[] pCount = new int[26];
13+
for (int i = 0; i < m; i++) {
14+
sCount[s.charAt(i) - 'a']++;
15+
pCount[p.charAt(i) - 'a']++;
16+
}
17+
18+
if (Arrays.equals(sCount, pCount))
19+
res.add(0);
20+
21+
for (int i = 0; i < n - m; i++) {
22+
sCount[s.charAt(i) - 'a']--;
23+
sCount[s.charAt(i + m) - 'a']++;
24+
25+
if (Arrays.equals(sCount, pCount))
26+
res.add(i + 1);
27+
}
28+
29+
return res;
30+
}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [438. Find All Anagrams in a String](https://leetcode.com/problems/find-all-anagrams-in-a-string/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n-m)$. $n$ is the length of `s` and $m$ is the length of `p`. The first loop costs $O(n)$ and the second loop costs $O(26\times(n-m))$. The total time complexity is $O(26n-25m)=O(n-m)$.
7+
- Space Complexity: $O(1)$. The size of `sCount` and `pCount` is 26 which is constant. Thus, the total space complexity is $O(1)$.

0443.string-compression/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [443. String Compression](https://leetcode.com/problems/string-compression/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n)$. $n$ is the length of `chars`.
7+
- Space Complexity: $O(1)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
class StringCompression {
2+
public int compress(char[] chars) {
3+
int n = chars.length;
4+
int write = 0, left = 0;
5+
for (int read = 0; read < n; read++) {
6+
if (read == n - 1 || chars[read] != chars[read + 1]) {
7+
chars[write++] = chars[read];
8+
int cnt = read - left + 1;
9+
if (cnt > 1) {
10+
String str = String.valueOf(cnt);
11+
for (int i = 0; i < str.length(); i++) {
12+
chars[write++] = str.charAt(i);
13+
}
14+
}
15+
left = read + 1;
16+
}
17+
}
18+
return write;
19+
}
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
import java.util.Stack;
2+
3+
/**
4+
* Definition for singly-linked list.
5+
* public class ListNode {
6+
* int val;
7+
* ListNode next;
8+
* ListNode() {}
9+
* ListNode(int val) { this.val = val; }
10+
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
11+
* }
12+
*/
13+
class AddTwoNumbersIi {
14+
private Stack<Integer> buildStack(ListNode l) {
15+
Stack<Integer> stack = new Stack<>();
16+
while (l != null) {
17+
stack.push(l.val);
18+
l = l.next;
19+
}
20+
return stack;
21+
}
22+
23+
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
24+
Stack<Integer> l1Stack = buildStack(l1);
25+
Stack<Integer> l2Stack = buildStack(l2);
26+
ListNode head = new ListNode(-1);
27+
int carry = 0;
28+
while (!l1Stack.empty() || !l2Stack.empty() || carry != 0) {
29+
int x = l1Stack.isEmpty() ? 0 : l1Stack.pop();
30+
int y = l2Stack.isEmpty() ? 0 : l2Stack.pop();
31+
int sum = x + y + carry;
32+
ListNode node = new ListNode(sum % 10);
33+
node.next = head.next;
34+
head.next = node;
35+
carry = sum / 10;
36+
}
37+
return head.next;
38+
}
39+
}

0445.add-two-numbers-ii/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [445. Add Two Numbers II](https://leetcode.com/problems/add-two-numbers-ii/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import java.util.HashMap;
2+
import java.util.Map;
3+
4+
class ArithmeticSlicesIiSubsequence {
5+
public int numberOfArithmeticSlices(int[] nums) {
6+
int ans = 0;
7+
int n = nums.length;
8+
Map<Long, Integer>[] f = new Map[n];
9+
for (int i = 0; i < n; i++) {
10+
f[i] = new HashMap<>();
11+
}
12+
13+
for (int i = 0; i < n; i++) {
14+
for (int j = 0; j < i; j++) {
15+
long d = (long) nums[i] - nums[j];
16+
int cnt = f[j].getOrDefault(d, 0);
17+
ans += cnt;
18+
f[i].put(d, f[i].getOrDefault(d, 0) + cnt + 1);
19+
}
20+
}
21+
return ans;
22+
}
23+
}

0 commit comments

Comments
 (0)