Skip to content

Commit cf35544

Browse files
committed
code is Added
1 parent af2cf23 commit cf35544

File tree

32 files changed

+482
-0
lines changed

32 files changed

+482
-0
lines changed

0018.4sum/FourSum.java

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import java.util.*;
2+
3+
class FourSum {
4+
public List<List<Integer>> fourSum(int[] nums, int target) {
5+
List<List<Integer>> res = new ArrayList<>();
6+
HashSet<List<Integer>> hashSet = new HashSet<>();
7+
8+
if (nums == null || nums.length < 4) {
9+
return res;
10+
}
11+
12+
int len = nums.length;
13+
Arrays.sort(nums);
14+
15+
for (int i = 0; i <= len - 4; i++) {
16+
for (int j = i + 1; j <= len - 3; j++) {
17+
int l = j + 1;
18+
int r = len - 1;
19+
while (l < r) {
20+
int sum = nums[i] + nums[j] + nums[l] + nums[r];
21+
if (sum < target) {
22+
l++;
23+
} else if (sum > target) {
24+
r--;
25+
} else {
26+
List<Integer> list = new ArrayList<>();
27+
list.add(nums[i]);
28+
list.add(nums[j]);
29+
list.add(nums[l]);
30+
list.add(nums[r]);
31+
// Remove duplicates
32+
if (!hashSet.contains(list)) {
33+
hashSet.add(list);
34+
res.add(list);
35+
}
36+
l++;
37+
r--;
38+
}
39+
}
40+
}
41+
}
42+
43+
return res;
44+
}
45+
}

0018.4sum/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [18. 4Sum](https://leetcode.com/problems/4sum/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [19. Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
class RemoveNthNodeFromEndOfList {
12+
public ListNode removeNthFromEnd(ListNode head, int n) {
13+
if (head == null) return null;
14+
ListNode fast = head;
15+
while (n-- > 0) {
16+
fast = fast.next;
17+
}
18+
if (fast == null) return head.next;
19+
ListNode slow = head;
20+
while (fast.next != null) {
21+
fast = fast.next;
22+
slow = slow.next;
23+
}
24+
slow.next = slow.next.next;
25+
return head;
26+
}
27+
}

0020.valid-parentheses/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# [20. Valid Parentheses](https://leetcode.com/problems/valid-parentheses/)
2+
3+
Complexity Analysis:
4+
5+
- Time Complexity: $O(n)$. $n$ is the length of s.
6+
- Space Complexity: $O(n + m)$. $m$ is the size of hash table which is 6 in this question. The max amount of stack is $O(n)$, $n$ is the length of $s$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import java.util.HashMap;
2+
import java.util.Map;
3+
import java.util.Stack;
4+
5+
class ValidParentheses {
6+
public boolean isValid(String s) {
7+
if (s.length() % 2 == 1) return false;
8+
9+
Map<Character, Character> pairs = new HashMap<>(){{
10+
put(')', '(');
11+
put(']', '[');
12+
put('}', '{');
13+
}};
14+
Stack<Character> stack = new Stack<>();
15+
for (char c : s.toCharArray()) {
16+
if (pairs.containsKey(c)) {
17+
if (stack.isEmpty() || stack.peek() != pairs.get(c))
18+
return false;
19+
stack.pop();
20+
} else {
21+
stack.push(c);
22+
}
23+
}
24+
return stack.isEmpty();
25+
}
26+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
class MergeTwoSortedLists {
12+
public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
13+
if (list1 == null) return list2;
14+
if (list2 == null) return list1;
15+
16+
if (list1.val < list2.val) {
17+
list1.next = mergeTwoLists(list1.next, list2);
18+
return list1;
19+
}
20+
list2.next = mergeTwoLists(list1, list2.next);
21+
return list2;
22+
}
23+
}

0021.merge-two-sorted-lists/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [21. Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
class GenerateParentheses {
5+
private void backtrack(List<String> res, StringBuilder cur, int open, int close, int max) {
6+
if (cur.length() == max * 2) {
7+
res.add(cur.toString());
8+
return;
9+
}
10+
if (open < max) {
11+
cur.append("(");
12+
backtrack(res, cur, open + 1, close, max);
13+
cur.deleteCharAt(cur.length() - 1);
14+
}
15+
if (close < open) {
16+
cur.append(")");
17+
backtrack(res, cur, open, close + 1, max);
18+
cur.deleteCharAt(cur.length() - 1);
19+
}
20+
}
21+
22+
public List<String> generateParenthesis(int n) {
23+
List<String> res = new ArrayList<>();
24+
backtrack(res, new StringBuilder(), 0, 0, n);
25+
return res;
26+
}
27+
}

0022.generate-parentheses/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [22. Generate Parentheses](https://leetcode.com/problems/generate-parentheses/)

0024.swap-nodes-in-pairs/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [24. Swap Nodes in Pairs](https://leetcode.com/problems/swap-nodes-in-pairs/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
class SwapNodesInPairs {
12+
public ListNode swapPairs(ListNode head) {
13+
ListNode node = new ListNode(-1);
14+
node.next = head;
15+
ListNode pre = node;
16+
while (pre.next != null && pre.next.next != null) {
17+
ListNode l1 = pre.next, l2 = pre.next.next;
18+
l1.next = l2.next;
19+
l2.next = l1;
20+
pre.next = l2;
21+
22+
pre = l1;
23+
}
24+
return node.next;
25+
}
26+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [26. Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class RemoveDuplicatesFromSortedArray {
2+
public int removeDuplicates(int[] nums) {
3+
int insertIndex = 1;
4+
for (int i = 1; i < nums.length; i++) {
5+
if (nums[i] != nums[i - 1]) {
6+
nums[insertIndex] = nums[i];
7+
insertIndex++;
8+
}
9+
}
10+
return insertIndex;
11+
}
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
class FindTheIndexOfTheFirstOccurrenceInAString {
2+
public int strStr(String haystack, String needle) {
3+
int n = haystack.length(), m = needle.length();
4+
if (m == 0)
5+
return 0;
6+
7+
int[] pi = new int[m];
8+
for (int i = 1, j = 0; i < m; i++) {
9+
while (j > 0 && needle.charAt(i) != needle.charAt(j)) {
10+
j = pi[j - 1];
11+
}
12+
if (needle.charAt(i) == needle.charAt(j)) {
13+
j++;
14+
}
15+
pi[i] = j;
16+
}
17+
for (int i = 0, j = 0; i < n; i++) {
18+
while (j > 0 && haystack.charAt(i) != needle.charAt(j)) {
19+
j = pi[j - 1];
20+
}
21+
if (haystack.charAt(i) == needle.charAt(j)) {
22+
j++;
23+
}
24+
if (j == m) {
25+
return i - m + 1;
26+
}
27+
}
28+
return -1;
29+
}
30+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [28. Find the Index of the First Occurrence in a String](https://leetcode.com/problems/find-the-index-of-the-first-occurrence-in-a-string/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n+m)$. $n$ is the length of haystack and $m$ is the length of needle. We need to iterate them twice, so the time complexity is $O(n+m)$.
7+
- Space Complexity: $O(m)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [30. Substring with Concatenation of All Words](https://leetcode.com/problems/substring-with-concatenation-of-all-words/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import java.util.ArrayList;
2+
import java.util.HashMap;
3+
import java.util.List;
4+
5+
class SubstringWithConcatenationOfAllWords {
6+
private final HashMap<String, Integer> wordCount = new HashMap<>();
7+
private int wordLength, substringSize, k;
8+
9+
private boolean check(int i, String s) {
10+
HashMap<String, Integer> remaining = new HashMap<>(wordCount);
11+
int wordsUsed = 0;
12+
13+
for (int j = i; j < i + substringSize; j+= wordLength) {
14+
String sub = s.substring(j, j + wordLength);
15+
if (remaining.getOrDefault(sub, 0) != 0) {
16+
remaining.put(sub, remaining.get(sub) - 1);
17+
wordsUsed++;
18+
} else {
19+
break;
20+
}
21+
}
22+
23+
return wordsUsed == k;
24+
}
25+
26+
public List<Integer> findSubstring(String s, String[] words) {
27+
int n = s.length();
28+
k = words.length;
29+
wordLength = words[0].length();
30+
substringSize = wordLength * k;
31+
32+
for (String word : words) {
33+
wordCount.put(word, wordCount.getOrDefault(word, 0) + 1);
34+
}
35+
36+
List<Integer> answer = new ArrayList<>();
37+
for (int i = 0; i < n - substringSize + 1; i++) {
38+
if (check(i, s)) {
39+
answer.add(i);
40+
}
41+
}
42+
43+
return answer;
44+
}
45+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [33. Search in Rotated Sorted Array](https://leetcode.com/problems/search-in-rotated-sorted-array/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
class SearchInRotatedSortedArray {
2+
public int search(int[] nums, int target) {
3+
int left = 0;
4+
int right = nums.length - 1;
5+
while (left <= right) {
6+
int mid = left + (right - left) / 2;
7+
if (nums[mid] == target) return mid;
8+
if (nums[mid] < nums[right]) {
9+
if (nums[mid] < target && nums[right] >= target) left = mid + 1;
10+
else right = mid - 1;
11+
} else {
12+
if (nums[left] <= target && nums[mid] > target) right = mid - 1;
13+
else left = mid + 1;
14+
}
15+
}
16+
return -1;
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
class FindFirstAndLastPositionOfElementInSortedArray {
2+
private int findFirst(int[] nums, int target) {
3+
int l = 0, h = nums.length;
4+
while (l < h) {
5+
int m = l + (h - l) / 2;
6+
if (nums[m] >= target) {
7+
h = m;
8+
} else {
9+
l = m + 1;
10+
}
11+
}
12+
return l;
13+
}
14+
15+
public int[] searchRange(int[] nums, int target) {
16+
int first = findFirst(nums, target);
17+
int last = findFirst(nums, target + 1) - 1;
18+
if (first == nums.length || nums[first] != target) {
19+
return new int[]{-1, -1};
20+
} else {
21+
return new int[]{first, Math.max(first, last)};
22+
}
23+
}
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [34. Find First and Last Position of Element in Sorted Array](https://leetcode.com/problems/find-first-and-last-position-of-element-in-sorted-array/)

0035.search-insert-position/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [35. Search Insert Position](https://leetcode.com/problems/search-insert-position/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(\log n)$. $n$ is the length of `nums`.
7+
- Space Complexity: $O(1)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
class SearchInsertPosition {
2+
public int searchInsert(int[] nums, int target) {
3+
int l = 0, h = nums.length;
4+
while (l < h) {
5+
int m = l + (h - l) / 2;
6+
if (nums[m] >= target) h = m;
7+
else l = m + 1;
8+
}
9+
return l;
10+
}
11+
}

0036.valid-sudoku/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [36. Valid Sudoku](https://leetcode.com/problems/valid-sudoku/)

0 commit comments

Comments
 (0)