Skip to content

Commit e9e7cdc

Browse files
committed
Solution is Added by anjha
1 parent 1905871 commit e9e7cdc

File tree

24 files changed

+288
-0
lines changed

24 files changed

+288
-0
lines changed

0231.power-of-two/PowerOfTwo.java

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class PowerOfTwo {
2+
public boolean isPowerOfTwo(int n) {
3+
return n > 0 && (n & (n - 1)) == 0;
4+
}
5+
}

0231.power-of-two/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [231. Power of Two](https://leetcode.com/problems/power-of-two/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
import java.util.Stack;
2+
3+
class MyQueue {
4+
Stack<Integer> inStack;
5+
Stack<Integer> outStack;
6+
7+
public MyQueue() {
8+
inStack = new Stack<>();
9+
outStack = new Stack<>();
10+
}
11+
12+
public void push(int x) {
13+
inStack.push(x);
14+
}
15+
16+
public int pop() {
17+
in2out();
18+
return outStack.pop();
19+
}
20+
21+
public int peek() {
22+
in2out();
23+
return outStack.peek();
24+
}
25+
26+
public boolean empty() {
27+
return inStack.isEmpty() && outStack.isEmpty();
28+
}
29+
30+
private void in2out() {
31+
if (outStack.isEmpty()) {
32+
while (!inStack.isEmpty()) {
33+
outStack.push(inStack.pop());
34+
}
35+
}
36+
}
37+
}
38+
39+
/**
40+
* Your MyQueue object will be instantiated and called as such:
41+
* MyQueue obj = new MyQueue();
42+
* obj.push(x);
43+
* int param_2 = obj.pop();
44+
* int param_3 = obj.peek();
45+
* boolean param_4 = obj.empty();
46+
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [232. Implement Queue using Stacks](https://leetcode.com/problems/implement-queue-using-stacks/)
2+
3+
4+
5+
Complexity Analysis:
6+
7+
- Time Complexity: $O(1)$. push and empty are $O(1)$ and pop and peek are $O(1)$ in average. For each element, it will push and pop to the stacks twice, so the average time complexity is $O(1)$.
8+
- Space Complexity: $O(n)$. $n$ is the size of the elements. We have $n$ elements in queue, so the space complexity is $O(n)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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 PalindromeLinkedList {
12+
private void cut(ListNode head, ListNode cutNode) {
13+
while (head.next != cutNode) {
14+
head = head.next;
15+
}
16+
head.next = null;
17+
}
18+
19+
private ListNode reverse(ListNode head) {
20+
ListNode newHead = null;
21+
while (head != null) {
22+
ListNode nextNode = head.next;
23+
head.next = newHead;
24+
newHead = head;
25+
head = nextNode;
26+
}
27+
return newHead;
28+
}
29+
30+
private boolean isEqual(ListNode l1, ListNode l2) {
31+
while (l1 != null && l2 != null) {
32+
if (l1.val != l2.val) return false;
33+
l1 = l1.next;
34+
l2 = l2.next;
35+
}
36+
return true;
37+
}
38+
39+
public boolean isPalindrome(ListNode head) {
40+
if (head == null || head.next == null) return true;
41+
ListNode slow = head, fast = head.next;
42+
while (fast != null && fast.next != null) {
43+
slow = slow.next;
44+
fast = fast.next.next;
45+
}
46+
if (fast != null) slow = slow.next;
47+
cut(head, slow);
48+
return isEqual(head, reverse(slow));
49+
}
50+
}

0234.palindrome-linked-list/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [234. Palindrome Linked List](https://leetcode.com/problems/palindrome-linked-list/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* Definition for a binary tree node.
3+
* public class TreeNode {
4+
* int val;
5+
* TreeNode left;
6+
* TreeNode right;
7+
* TreeNode(int x) { val = x; }
8+
* }
9+
*/
10+
11+
class LowestCommonAncestorOfABinarySearchTree {
12+
public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
13+
if (root.val > p.val && root.val > q.val) return lowestCommonAncestor(root.left, p, q);
14+
if (root.val < p.val && root.val < q.val) return lowestCommonAncestor(root.right, p, q);
15+
return root;
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [235. Lowest Common Ancestor of a Binary Search Tree](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* Definition for a binary tree node.
3+
* public class TreeNode {
4+
* int val;
5+
* TreeNode left;
6+
* TreeNode right;
7+
* TreeNode(int x) { val = x; }
8+
* }
9+
*/
10+
class LowestCommonAncestorOfABinaryTree {
11+
public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
12+
if (root == null || root == p || root == q) return root;
13+
TreeNode left = lowestCommonAncestor(root.left, p , q);
14+
TreeNode right = lowestCommonAncestor(root.right, p, q);
15+
return left == null ? right : right == null ? left : root;
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [236. Lowest Common Ancestor of a Binary Tree](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**
2+
* Definition for singly-linked list.
3+
* public class ListNode {
4+
* int val;
5+
* ListNode next;
6+
* ListNode(int x) { val = x; }
7+
* }
8+
*/
9+
class DeleteNodeInALinkedList {
10+
public void deleteNode(ListNode node) {
11+
ListNode nextNode = node.next;
12+
node.val = nextNode.val;
13+
node.next = nextNode.next;
14+
nextNode.next = null;
15+
}
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [237. Delete Node in a Linked List](https://leetcode.com/problems/delete-node-in-a-linked-list/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
class ProductOfArrayExceptSelf {
2+
public int[] productExceptSelf(int[] nums) {
3+
int n = nums.length;
4+
int[] left = new int[n];
5+
int[] right = new int[n];
6+
7+
left[0] = 1;
8+
for (int i = 1; i < n; i++)
9+
left[i] = left[i - 1] * nums[i - 1];
10+
11+
right[n - 1] = 1;
12+
for (int i = n - 2; i >= 0; i--)
13+
right[i] = right[i + 1] * nums[i + 1];
14+
15+
int[] ans = new int[n];
16+
for (int i = 0; i < n; i++)
17+
ans[i] = left[i] * right[i];
18+
19+
return ans;
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [238. Product of Array Except Self](https://leetcode.com/problems/product-of-array-except-self/)
2+

0240.search-a-2d-matrix-ii/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [240. Search a 2D Matrix II](https://leetcode.com/problems/search-a-2d-matrix-ii/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class SearchA2dMatrixIi {
2+
public boolean searchMatrix(int[][] matrix, int target) {
3+
if (matrix == null || matrix.length == 0 || matrix[0].length == 0) return false;
4+
int m = matrix.length, n = matrix[0].length;
5+
int row = 0, col = n - 1;
6+
while (row < m && col >= 0) {
7+
if (matrix[row][col] == target) return true;
8+
else if (target < matrix[row][col]) col--;
9+
else row++;
10+
}
11+
return false;
12+
}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
class DifferentWaysToAddParentheses {
5+
public List<Integer> diffWaysToCompute(String expression) {
6+
List<Integer> ways = new ArrayList<>();
7+
for (int i = 0; i < expression.length(); i++) {
8+
char c = expression.charAt(i);
9+
if (c == '+' || c == '-' || c == '*') {
10+
List<Integer> left = diffWaysToCompute(expression.substring(0, i));
11+
List<Integer> right = diffWaysToCompute(expression.substring(i+1));
12+
for (int l : left) {
13+
for (int r : right) {
14+
switch (c) {
15+
case '+':
16+
ways.add(l + r);
17+
break;
18+
case '-':
19+
ways.add(l - r);
20+
break;
21+
case '*':
22+
ways.add(l * r);
23+
break;
24+
}
25+
}
26+
}
27+
}
28+
}
29+
if (ways.size() == 0) {
30+
ways.add(Integer.valueOf(expression));
31+
}
32+
return ways;
33+
}
34+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [241. Different Ways to Add Parentheses](https://leetcode.com/problems/different-ways-to-add-parentheses/)

0242.valid-anagram/README.md

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

0242.valid-anagram/ValidAnagram.java

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class ValidAnagram {
2+
public boolean isAnagram(String s, String t) {
3+
int[] counts = new int[26];
4+
for (char c : s.toCharArray()) {
5+
counts[c - 'a']++;
6+
}
7+
for (char c : t.toCharArray()) {
8+
counts[c - 'a']--;
9+
}
10+
for (int count: counts) {
11+
if (count != 0) return false;
12+
}
13+
return true;
14+
}
15+
}

0258.add-digits/AddDigits.java

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class AddDigits {
2+
public int addDigits(int num) {
3+
while (num >= 10) {
4+
int sum = 0;
5+
while (num > 0) {
6+
sum += num % 10;
7+
num /= 10;
8+
}
9+
num = sum;
10+
}
11+
return num;
12+
}
13+
}

0258.add-digits/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [258. Add Digits](https://leetcode.com/problems/add-digits/)
2+
3+
4+
5+
Complexity Analysis:
6+
7+
- Time Complexity: $O(\log n)$.
8+
- Space Complexity: $O(1)$.

0260.single-number-iii/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [260. Single Number III](https://leetcode.com/problems/single-number-iii/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class SingleNumberIii {
2+
public int[] singleNumber(int[] nums) {
3+
int diff = 0;
4+
for (int num : nums) diff ^= num;
5+
diff &= -diff;
6+
int[] ret = new int[2];
7+
for (int num : nums) {
8+
if ((num & diff) == 0) ret[0] ^= num;
9+
else ret[1] ^= num;
10+
}
11+
return ret;
12+
}
13+
}

0 commit comments

Comments
 (0)