Skip to content

Commit deb0675

Browse files
committed
code is added by anjha1
1 parent c258f16 commit deb0675

File tree

26 files changed

+388
-0
lines changed

26 files changed

+388
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/**
2+
* Definition for singly-linked list.
3+
* class ListNode {
4+
* int val;
5+
* ListNode next;
6+
* ListNode(int x) {
7+
* val = x;
8+
* next = null;
9+
* }
10+
* }
11+
*/
12+
public class LinkedListCycle {
13+
public boolean hasCycle(ListNode head) {
14+
if (head == null) return false;
15+
16+
ListNode l1 = head, l2 = head.next;
17+
while (l1 != null && l2 != null && l2.next != null) {
18+
if (l1 == l2) {
19+
return true;
20+
}
21+
l1 = l1.next;
22+
l2 = l2.next.next;
23+
}
24+
25+
return false;
26+
}
27+
}

0141.linked-list-cycle/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [141. Linked List Cycle](https://leetcode.com/problems/linked-list-cycle/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/**
2+
* Definition for singly-linked list.
3+
* class ListNode {
4+
* int val;
5+
* ListNode next;
6+
* ListNode(int x) {
7+
* val = x;
8+
* next = null;
9+
* }
10+
* }
11+
*/
12+
public class LinkedListCycleIi {
13+
public ListNode detectCycle(ListNode head) {
14+
ListNode slow = head, fast = head;
15+
while (fast != null && fast.next != null) {
16+
slow = slow.next;
17+
fast = fast.next.next;
18+
if (slow == fast) break;
19+
}
20+
if (fast == null || fast.next == null) return null;
21+
while (head != slow) {
22+
head = head.next;
23+
slow = slow.next;
24+
}
25+
return head;
26+
}
27+
}

0142.linked-list-cycle-ii/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [142. Linked List Cycle II](https://leetcode.com/problems/linked-list-cycle-ii/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
import java.util.Stack;
4+
5+
/**
6+
* Definition for a binary tree node.
7+
* public class TreeNode {
8+
* int val;
9+
* TreeNode left;
10+
* TreeNode right;
11+
* TreeNode() {}
12+
* TreeNode(int val) { this.val = val; }
13+
* TreeNode(int val, TreeNode left, TreeNode right) {
14+
* this.val = val;
15+
* this.left = left;
16+
* this.right = right;
17+
* }
18+
* }
19+
*/
20+
class BinaryTreePreorderTraversal {
21+
public List<Integer> preorderTraversal(TreeNode root) {
22+
List<Integer> ret = new ArrayList<>();
23+
Stack<TreeNode> stack = new Stack<>();
24+
stack.push(root);
25+
while (!stack.isEmpty()) {
26+
TreeNode node = stack.pop();
27+
if (node == null) continue;
28+
ret.add(node.val);
29+
stack.push(node.right);
30+
stack.push(node.left);
31+
}
32+
return ret;
33+
}
34+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [144. Binary Tree Preorder Traversal](https://leetcode.com/problems/binary-tree-preorder-traversal/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import java.util.ArrayList;
2+
import java.util.Collections;
3+
import java.util.List;
4+
import java.util.Stack;
5+
6+
/**
7+
* Definition for a binary tree node.
8+
* public class TreeNode {
9+
* int val;
10+
* TreeNode left;
11+
* TreeNode right;
12+
* TreeNode() {}
13+
* TreeNode(int val) { this.val = val; }
14+
* TreeNode(int val, TreeNode left, TreeNode right) {
15+
* this.val = val;
16+
* this.left = left;
17+
* this.right = right;
18+
* }
19+
* }
20+
*/
21+
class BinaryTreePostorderTraversal {
22+
public List<Integer> postorderTraversal(TreeNode root) {
23+
List<Integer> ret = new ArrayList<>();
24+
Stack<TreeNode> stack = new Stack<>();
25+
stack.push(root);
26+
while (!stack.isEmpty()) {
27+
TreeNode node = stack.pop();
28+
if (node == null) continue;
29+
ret.add(node.val);
30+
stack.push(node.left);
31+
stack.push(node.right);
32+
}
33+
Collections.reverse(ret);
34+
return ret;
35+
}
36+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [145. Binary Tree Postorder Traversal](https://leetcode.com/problems/binary-tree-postorder-traversal/)
2+

0148.sort-list/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [148. Sort List](https://leetcode.com/problems/sort-list/)

0148.sort-list/SortList.java

+48
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+
class SortList {
12+
private ListNode getMid(ListNode head) {
13+
ListNode midPrev = null;
14+
while (head != null && head.next != null) {
15+
midPrev = (midPrev == null) ? head : midPrev.next;
16+
head = head.next.next;
17+
}
18+
ListNode mid = midPrev.next;
19+
midPrev.next = null;
20+
return mid;
21+
}
22+
23+
private ListNode merge(ListNode list1, ListNode list2) {
24+
ListNode dummyHead = new ListNode(0);
25+
ListNode tail = dummyHead;
26+
while (list1 != null && list2 != null) {
27+
if (list1.val < list2.val) {
28+
tail.next = list1;
29+
list1 = list1.next;
30+
tail = tail.next;
31+
} else {
32+
tail.next = list2;
33+
list2 = list2.next;
34+
tail = tail.next;
35+
}
36+
}
37+
tail.next = (list1 != null) ? list1 : list2;
38+
return dummyHead.next;
39+
}
40+
41+
public ListNode sortList(ListNode head) {
42+
if (head == null || head.next == null) return head;
43+
ListNode mid = getMid(head);
44+
ListNode left = sortList(head);
45+
ListNode right = sortList(mid);
46+
return merge(left, right);
47+
}
48+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import java.util.Stack;
2+
3+
class EvaluateReversePolishNotation {
4+
public int evalRPN(String[] tokens) {
5+
Stack<Integer> stack = new Stack<>();
6+
for (String token : tokens) {
7+
if (isNumber(token)) {
8+
stack.push(Integer.parseInt(token));
9+
} else {
10+
int num2 = stack.pop();
11+
int num1 = stack.pop();
12+
switch (token) {
13+
case "+":
14+
stack.push(num1 + num2);
15+
break;
16+
case "-":
17+
stack.push(num1 - num2);
18+
break;
19+
case "*":
20+
stack.push(num1 * num2);
21+
break;
22+
case "/":
23+
stack.push(num1 / num2);
24+
break;
25+
default:
26+
}
27+
}
28+
}
29+
return stack.pop();
30+
}
31+
32+
private boolean isNumber(String token) {
33+
return !("+".equals(token) || "-".equals(token) || "*".equals(token) || "/".equals(token));
34+
}
35+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [150. Evaluate Reverse Polish Notation](https://leetcode.com/problems/evaluate-reverse-polish-notation/)
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [151. Reverse Words in a String](https://leetcode.com/problems/reverse-words-in-a-string/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
class ReverseWordsInAString {
2+
private void reverse(char[] a, int i, int j) {
3+
while (i < j) {
4+
char t = a[i];
5+
a[i++] = a[j];
6+
a[j--] = t;
7+
}
8+
}
9+
10+
private void reverseWords(char[] a, int n) {
11+
int i = 0, j = 0;
12+
13+
while (i < n) {
14+
while (i < j || i < n && a[i] == ' ') i++;
15+
while (j < i || j < n && a[j] != ' ') j++;
16+
reverse(a, i, j - 1);
17+
}
18+
}
19+
20+
private String cleanSpaces(char[] a, int n) {
21+
int i = 0, j = 0;
22+
while (j < n) {
23+
while (j < n && a[j] == ' ') j++;
24+
while (j < n && a[j] != ' ') a[i++] = a[j++];
25+
while (j < n && a[j] == ' ') j++;
26+
if (j < n) a[i++] = ' ';
27+
}
28+
29+
return new String(a).substring(0, i);
30+
}
31+
32+
public String reverseWords(String s) {
33+
if (s == null) return null;
34+
35+
char[] a = s.toCharArray();
36+
int n = a.length;
37+
38+
reverse(a, 0, n - 1);
39+
reverseWords(a, n);
40+
return cleanSpaces(a, n);
41+
}
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class MaximumProductSubarray {
2+
public int maxProduct(int[] nums) {
3+
if (nums == null || nums.length == 0) return 0;
4+
5+
int max = nums[0], min = nums[0], result = nums[0];
6+
for (int i = 1; i < nums.length; i++) {
7+
int temp = max;
8+
max = Math.max(Math.max(max * nums[i], min * nums[i]), nums[i]);
9+
min = Math.min(Math.min(temp * nums[i], min * nums[i]), nums[i]);
10+
if (max > result) result = max;
11+
}
12+
return result;
13+
}
14+
}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [152. Maximum Product Subarray](https://leetcode.com/problems/maximum-product-subarray/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class FindMinimumInRotatedSortedArray {
2+
public int findMin(int[] nums) {
3+
int l = 0, h = nums.length - 1;
4+
while (l < h) {
5+
int m = l + (h - l) / 2;
6+
if (nums[m] <= nums[h]) {
7+
h = m;
8+
} else {
9+
l = m + 1;
10+
}
11+
}
12+
return nums[l];
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [153. Find Minimum in Rotated Sorted Array](https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/)

0155.min-stack/MinStack.java

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
import java.util.Stack;
2+
3+
class MinStack {
4+
private Stack<Integer> dataStack;
5+
private Stack<Integer> minStack;
6+
private int min;
7+
8+
public MinStack() {
9+
dataStack = new Stack<>();
10+
minStack = new Stack<>();
11+
min = Integer.MAX_VALUE;
12+
}
13+
14+
public void push(int val) {
15+
dataStack.push(val);
16+
min = Math.min(min, val);
17+
minStack.push(min);
18+
}
19+
20+
public void pop() {
21+
dataStack.pop();
22+
minStack.pop();
23+
min = minStack.isEmpty() ? Integer.MAX_VALUE : minStack.peek();
24+
}
25+
26+
public int top() {
27+
return dataStack.peek();
28+
}
29+
30+
public int getMin() {
31+
return minStack.peek();
32+
}
33+
}
34+
35+
/**
36+
* Your MinStack object will be instantiated and called as such:
37+
* MinStack obj = new MinStack();
38+
* obj.push(val);
39+
* obj.pop();
40+
* int param_3 = obj.top();
41+
* int param_4 = obj.getMin();
42+
*/

0155.min-stack/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [155. Min Stack](https://leetcode.com/problems/min-stack/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/**
2+
* Definition for singly-linked list.
3+
* public class ListNode {
4+
* int val;
5+
* ListNode next;
6+
* ListNode(int x) {
7+
* val = x;
8+
* next = null;
9+
* }
10+
* }
11+
*/
12+
public class IntersectionOfTwoLinkedLists {
13+
public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
14+
ListNode l1 = headA, l2 = headB;
15+
while (l1 != l2) {
16+
l1 = (l1 == null) ? headB : l1.next;
17+
l2 = (l2 == null) ? headA : l2.next;
18+
}
19+
return l1;
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [160. Intersection of Two Linked Lists](https://leetcode.com/problems/intersection-of-two-linked-lists/)
2+

0 commit comments

Comments
 (0)