Skip to content

Commit e2641c5

Browse files
committed
Solution is Added
1 parent 29a996a commit e2641c5

File tree

22 files changed

+322
-0
lines changed

22 files changed

+322
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class NonDecreasingArray {
2+
public boolean checkPossibility(int[] nums) {
3+
int cnt = 0;
4+
for (int i = 1; i < nums.length && cnt < 2; i++) {
5+
if (nums[i] >= nums[i - 1]) continue;
6+
cnt++;
7+
if (i - 2 >= 0 && nums[i - 2] > nums[i]) {
8+
nums[i] = nums[i - 1];
9+
} else {
10+
nums[i - 1] = nums[i];
11+
}
12+
}
13+
return cnt <= 1;
14+
}
15+
}

0665.non-decreasing-array/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [665. Non-decreasing Array](https://leetcode.com/problems/non-decreasing-array/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class BeautifulArrangementIi {
2+
public int[] constructArray(int n, int k) {
3+
int[] ret = new int[n];
4+
ret[0] = 1;
5+
for (int i = 1, interval = k; i <= k; i++, interval--) {
6+
ret[i] = i % 2 == 1 ? ret[i - 1] + interval : ret[i - 1] - interval;
7+
}
8+
for (int i = k + 1; i < n; i++) {
9+
ret[i] = i + 1;
10+
}
11+
return ret;
12+
}
13+
}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [667. Beautiful Arrangement II](https://leetcode.com/problems/beautiful-arrangement-ii/)
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [669. Trim a Binary Search Tree](https://leetcode.com/problems/trim-a-binary-search-tree/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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 TrimABinarySearchTree {
17+
public TreeNode trimBST(TreeNode root, int low, int high) {
18+
if (root == null) return root;
19+
if (root.val > high) return trimBST(root.left, low, high);
20+
if (root.val < low) return trimBST(root.right, low, high);
21+
root.left = trimBST(root.left, low, high);
22+
root.right = trimBST(root.right, low, high);
23+
return root;
24+
}
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [671. Second Minimum Node In a Binary Tree](https://leetcode.com/problems/second-minimum-node-in-a-binary-tree/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 SecondMinimumNodeInABinaryTree {
17+
public int findSecondMinimumValue(TreeNode root) {
18+
if (root == null) return -1;
19+
if (root.left == null && root.right == null) return -1;
20+
int leftVal = root.left != null ? root.left.val : 0;
21+
int rightVal = root.right != null ? root.right.val : 0;
22+
if (leftVal == root.val) leftVal= findSecondMinimumValue(root.left);
23+
if (rightVal == root.val) rightVal = findSecondMinimumValue(root.right);
24+
if (leftVal != -1 && rightVal != -1) return Math.min(leftVal, rightVal);
25+
if (leftVal != -1) return leftVal;
26+
return rightVal;
27+
}
28+
}

0677.map-sum-pairs/MapSumPairs.java

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
class MapSum {
2+
private class Node {
3+
Node[] childs = new Node[26];
4+
int value;
5+
}
6+
7+
private Node root = new Node();
8+
9+
private int indexForChar(char c) {
10+
return c - 'a';
11+
}
12+
13+
public MapSum() {
14+
15+
}
16+
17+
private void insert(String key, Node node, int val) {
18+
if (node == null) return;
19+
if (key.length() == 0) {
20+
node.value = val;
21+
return;
22+
}
23+
int index = indexForChar(key.charAt(0));
24+
if (node.childs[index] == null) {
25+
node.childs[index] = new Node();
26+
}
27+
insert(key.substring(1), node.childs[index], val);
28+
}
29+
30+
public void insert(String key, int val) {
31+
insert(key, root, val);
32+
}
33+
34+
private int sum(String prefix, Node node) {
35+
if (node == null) return 0;
36+
if (prefix.length() != 0) {
37+
int index = indexForChar(prefix.charAt(0));
38+
return sum(prefix.substring(1), node.childs[index]);
39+
}
40+
int sum = node.value;
41+
for (Node child : node.childs) {
42+
sum += sum(prefix, child);
43+
}
44+
return sum;
45+
}
46+
47+
public int sum(String prefix) {
48+
return sum(prefix, root);
49+
}
50+
}
51+
52+
/**
53+
* Your MapSum object will be instantiated and called as such:
54+
* MapSum obj = new MapSum();
55+
* obj.insert(key,val);
56+
* int param_2 = obj.sum(prefix);
57+
*/

0677.map-sum-pairs/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [677. Map Sum Pairs](https://leetcode.com/problems/map-sum-pairs/)
2+

0680.valid-palindrome-ii/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [680. Valid Palindrome II](https://leetcode.com/problems/valid-palindrome-ii/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
class ValidPalindromeIi {
2+
private boolean isPalindrome(String s, int i, int j) {
3+
while (i < j) {
4+
if (s.charAt(i++) != s.charAt(j--)) {
5+
return false;
6+
}
7+
}
8+
return true;
9+
}
10+
11+
public boolean validPalindrome(String s) {
12+
int i = 0, j = s.length() - 1;
13+
while (i < j) {
14+
if (s.charAt(i) != s.charAt(j)) {
15+
return isPalindrome(s, i, j - 1) || isPalindrome(s, i + 1, j);
16+
}
17+
i++;
18+
j--;
19+
}
20+
21+
return true;
22+
}
23+
}

0684.redundant-connection/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [684. Redundant Connection](https://leetcode.com/problems/redundant-connection/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
class RedundantConnection {
2+
private class UF {
3+
private int[] id;
4+
5+
UF(int N) {
6+
id = new int[N + 1];
7+
for (int i = 0; i < id.length; i++) {
8+
id[i] = i;
9+
}
10+
}
11+
12+
int find (int p) {
13+
return id[p];
14+
}
15+
16+
void union(int u, int v) {
17+
int uID = find(u);
18+
int vID = find(v);
19+
if (uID == vID) {
20+
return;
21+
}
22+
for (int i = 0; i < id.length; i++) {
23+
if (id[i] == uID) {
24+
id[i] = vID;
25+
}
26+
}
27+
}
28+
29+
boolean connect(int u, int v) {
30+
return find(u) == find(v);
31+
}
32+
}
33+
34+
public int[] findRedundantConnection(int[][] edges) {
35+
int N = edges.length;
36+
UF uf = new UF(N);
37+
for (int[] e : edges) {
38+
int u = e[0], v = e[1];
39+
if (uf.connect(u, v)) {
40+
return e;
41+
}
42+
uf.union(u, v);
43+
}
44+
return new int[]{-1, -1};
45+
}
46+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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 LongestUnivaluePath {
17+
private int path = 0;
18+
19+
private int dfs(TreeNode root) {
20+
if (root == null) return 0;
21+
int left = dfs(root.left);
22+
int right = dfs(root.right);
23+
int leftPath = root.left != null && root.left.val == root.val ? left + 1 : 0;
24+
int rightPath = root.right != null && root.right.val == root.val ? right + 1 : 0;
25+
path = Math.max(path, leftPath + rightPath);
26+
return Math.max(leftPath, rightPath);
27+
}
28+
29+
public int longestUnivaluePath(TreeNode root) {
30+
dfs(root);
31+
return path;
32+
}
33+
}

0687.longest-univalue-path/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [687. Longest Univalue Path](https://leetcode.com/problems/longest-univalue-path/)
2+

0692.top-k-frequent-words/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [692. Top K Frequent Words](https://leetcode.com/problems/top-k-frequent-words/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import java.util.*;
2+
3+
class TopKFrequentWords {
4+
public List<String> topKFrequent(String[] words, int k) {
5+
Map<String, Integer> map = new HashMap<>();
6+
for (String word : words) {
7+
map.put(word, map.getOrDefault(word, 0) + 1);
8+
}
9+
10+
PriorityQueue<Map.Entry<String, Integer>> pq = new PriorityQueue<>(new MyComparator());
11+
12+
for (Map.Entry<String, Integer> e : map.entrySet()) {
13+
pq.offer(e);
14+
}
15+
16+
List<String> res = new LinkedList<>();
17+
for (int i = 0; i < k; i++) {
18+
res.add(Objects.requireNonNull(pq.poll()).getKey());
19+
}
20+
return res;
21+
}
22+
}
23+
24+
class MyComparator implements Comparator<Map.Entry<String, Integer>> {
25+
public int compare(Map.Entry<String, Integer> e1, Map.Entry<String, Integer> e2){
26+
String word1 = e1.getKey();
27+
int freq1 = e1.getValue();
28+
String word2 = e2.getKey();
29+
int freq2 = e2.getValue();
30+
if (freq1 != freq2) return freq2-freq1;
31+
else return word1.compareTo(word2);
32+
}
33+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
class BinaryNumberWithAlternatingBits {
2+
public boolean hasAlternatingBits(int n) {
3+
int a = (n ^ (n >> 1));
4+
return (a & (a + 1)) == 0;
5+
}
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [693. Binary Number with Alternating Bits](https://leetcode.com/problems/binary-number-with-alternating-bits/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
class MaxAreaOfIsland {
2+
private int maxAreaOfIslandHelper(int r, int c, int[][] grid) {
3+
if (r < 0 || r == grid.length || c < 0 || c == grid[0].length || grid[r][c] == 0) return 0;
4+
grid[r][c] = 0;
5+
return 1 + maxAreaOfIslandHelper(r + 1, c, grid)
6+
+ maxAreaOfIslandHelper(r - 1, c , grid)
7+
+ maxAreaOfIslandHelper(r, c + 1, grid)
8+
+ maxAreaOfIslandHelper(r, c - 1, grid);
9+
}
10+
11+
public int maxAreaOfIsland(int[][] grid) {
12+
int maxArea = 0;
13+
for (int i = 0; i < grid.length; i++) {
14+
for (int j = 0; j < grid[0].length; j++) {
15+
if (grid[i][j] == 1) {
16+
int area = maxAreaOfIslandHelper(i, j, grid);
17+
if (area > maxArea) maxArea = area;
18+
}
19+
}
20+
}
21+
return maxArea;
22+
}
23+
}

0695.max-area-of-island/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [695. Max Area of Island](https://leetcode.com/problems/max-area-of-island/)
2+

0 commit comments

Comments
 (0)