格式化代码

This commit is contained in:
轩辕龙儿 2022-09-19 21:59:36 +08:00
parent f85196585c
commit 7a721c901e
270 changed files with 127300 additions and 2791 deletions

View File

@ -39,8 +39,9 @@
// 👍 1 👎 0 // 👍 1 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//5963:反转两次的数字 //5963:反转两次的数字
class ANumberAfterADoubleReversal{ class ANumberAfterADoubleReversal {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new ANumberAfterADoubleReversal().new Solution(); Solution solution = new ANumberAfterADoubleReversal().new Solution();
@ -48,11 +49,11 @@ class ANumberAfterADoubleReversal{
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public boolean isSameAfterReversals(int num) { public boolean isSameAfterReversals(int num) {
return num == 0 || num % 10 > 0; return num == 0 || num % 10 > 0;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -45,14 +45,15 @@ package leetcode.editor.cn;
import com.code.leet.entiy.ListNode; import com.code.leet.entiy.ListNode;
//2:两数相加 //2:两数相加
public class AddTwoNumbers{ public class AddTwoNumbers {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new AddTwoNumbers().new Solution(); Solution solution = new AddTwoNumbers().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for singly-linked list. * Definition for singly-linked list.
* public class ListNode { * public class ListNode {
* int val; * int val;
@ -62,7 +63,7 @@ public class AddTwoNumbers{
* ListNode(int val, ListNode next) { this.val = val; this.next = next; } * ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* } * }
*/ */
class Solution { class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) { public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
int sum = 0; int sum = 0;
ListNode temp = l1; ListNode temp = l1;
@ -91,7 +92,7 @@ class Solution {
} }
return l1; return l1;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -54,13 +54,13 @@ public class AdvantageShuffle {
int[] copy = Arrays.copyOf(A, length); int[] copy = Arrays.copyOf(A, length);
Arrays.sort(copy); Arrays.sort(copy);
int i = 0, j = 0; int i = 0, j = 0;
while(i < A.length) { while (i < A.length) {
if(copy[i] > pairs[j].getValue()){ if (copy[i] > pairs[j].getValue()) {
A[pairs[j].getKey()] = copy[i]; A[pairs[j].getKey()] = copy[i];
i++; i++;
j++; j++;
} else { } else {
A[pairs[(A.length-1) - (i-j)].getKey()] = copy[i]; A[pairs[(A.length - 1) - (i - j)].getKey()] = copy[i];
i++; i++;
} }
} }

View File

@ -63,7 +63,7 @@ public class AllNodesDistanceKInBinaryTree {
* } * }
*/ */
class Solution { class Solution {
// private Stack<TreeNode> stack = new Stack<>(); // private Stack<TreeNode> stack = new Stack<>();
// List<Integer> list = new ArrayList<>(); // List<Integer> list = new ArrayList<>();
// //
// public List<Integer> distanceK(TreeNode root, TreeNode target, int k) { // public List<Integer> distanceK(TreeNode root, TreeNode target, int k) {
@ -110,7 +110,7 @@ public class AllNodesDistanceKInBinaryTree {
// dfs(root.left, index + 1, k); // dfs(root.left, index + 1, k);
// dfs(root.right, index + 1, k); // dfs(root.right, index + 1, k);
// } // }
Map<Integer, TreeNode> parents = new HashMap<Integer, TreeNode>(); Map<Integer, TreeNode> parents = new HashMap<Integer, TreeNode>();
List<Integer> ans = new ArrayList<Integer>(); List<Integer> ans = new ArrayList<Integer>();
public List<Integer> distanceK(TreeNode root, TreeNode target, int k) { public List<Integer> distanceK(TreeNode root, TreeNode target, int k) {

View File

@ -57,7 +57,7 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
//446:等差数列划分 II - 子序列 //446:等差数列划分 II - 子序列
class ArithmeticSlicesIiSubsequence{ class ArithmeticSlicesIiSubsequence {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new ArithmeticSlicesIiSubsequence().new Solution(); Solution solution = new ArithmeticSlicesIiSubsequence().new Solution();
@ -65,7 +65,7 @@ class ArithmeticSlicesIiSubsequence{
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int numberOfArithmeticSlices(int[] nums) { public int numberOfArithmeticSlices(int[] nums) {
int count = 0; int count = 0;
@ -84,7 +84,7 @@ class Solution {
} }
return count; return count;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -46,12 +46,12 @@ class ArrangingCoins {
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int arrangeCoins(long n) { public int arrangeCoins(long n) {
if(n==0){ if (n == 0) {
return 0; return 0;
} }
double number = (Math.sqrt(1+8*n)-1)/2; double number = (Math.sqrt(1 + 8 * n) - 1) / 2;
return (int)(Math.floor(number)); return (int) (Math.floor(number));
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)

View File

@ -58,11 +58,11 @@ class AssignCookies {
int gi = 0; int gi = 0;
int si = 0; int si = 0;
while (gi < g.length && si < s.length) { while (gi < g.length && si < s.length) {
if(s[si]>=g[gi]){ if (s[si] >= g[gi]) {
count++; count++;
si++; si++;
gi++; gi++;
}else{ } else {
si++; si++;
} }
} }

View File

@ -50,13 +50,13 @@ package leetcode.editor.cn;
import java.util.Stack; import java.util.Stack;
public class AsteroidCollision{ public class AsteroidCollision {
public static void main(String[] args) { public static void main(String[] args) {
Solution solution = new AsteroidCollision().new Solution(); Solution solution = new AsteroidCollision().new Solution();
} }
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int[] asteroidCollision(int[] asteroids) { public int[] asteroidCollision(int[] asteroids) {
Stack<Integer> stack = new Stack<>(); Stack<Integer> stack = new Stack<>();
for (int num : asteroids) { for (int num : asteroids) {
@ -84,7 +84,7 @@ class Solution {
} }
return asteroids; return asteroids;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -44,13 +44,14 @@ import java.util.List;
import java.util.Queue; import java.util.Queue;
//637:二叉树的层平均值 //637:二叉树的层平均值
public class AverageOfLevelsInBinaryTree{ public class AverageOfLevelsInBinaryTree {
public static void main(String[] args) { public static void main(String[] args) {
Solution solution = new AverageOfLevelsInBinaryTree().new Solution(); Solution solution = new AverageOfLevelsInBinaryTree().new Solution();
// TO TEST // TO TEST
} }
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for a binary tree node. * Definition for a binary tree node.
* public class TreeNode { * public class TreeNode {
* int val; * int val;
@ -65,29 +66,29 @@ public class AverageOfLevelsInBinaryTree{
* } * }
* } * }
*/ */
class Solution { class Solution {
public List<Double> averageOfLevels(TreeNode root) { public List<Double> averageOfLevels(TreeNode root) {
Queue<TreeNode> queue = new LinkedList<>(); Queue<TreeNode> queue = new LinkedList<>();
queue.add(root); queue.add(root);
List<Double> result = new ArrayList<>(); List<Double> result = new ArrayList<>();
while (!queue.isEmpty()){ while (!queue.isEmpty()) {
int size = queue.size(); int size = queue.size();
double sum = 0f; double sum = 0f;
for (int i = 0; i < size; i++) { for (int i = 0; i < size; i++) {
TreeNode node = queue.poll(); TreeNode node = queue.poll();
if(node.left!=null){ if (node.left != null) {
queue.add(node.left); queue.add(node.left);
} }
if(node.right!=null){ if (node.right != null) {
queue.add(node.right); queue.add(node.right);
} }
sum+= node.val; sum += node.val;
} }
result.add(sum/size); result.add(sum / size);
} }
return result; return result;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -83,7 +83,7 @@ public class BackspaceStringCompare {
int length = str.length(); int length = str.length();
for (char ch : str.toCharArray()) { for (char ch : str.toCharArray()) {
if (ch == '#') { if (ch == '#') {
if(!stack.isEmpty()) { if (!stack.isEmpty()) {
stack.pop(); stack.pop();
} }
} else { } else {

View File

@ -45,14 +45,15 @@ package leetcode.editor.cn;
import com.code.leet.entiy.TreeNode; import com.code.leet.entiy.TreeNode;
//110:平衡二叉树 //110:平衡二叉树
public class BalancedBinaryTree{ public class BalancedBinaryTree {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new BalancedBinaryTree().new Solution(); Solution solution = new BalancedBinaryTree().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for a binary tree node. * Definition for a binary tree node.
* public class TreeNode { * public class TreeNode {
* int val; * int val;
@ -67,7 +68,7 @@ public class BalancedBinaryTree{
* } * }
* } * }
*/ */
class Solution { class Solution {
public boolean isBalanced(TreeNode root) { public boolean isBalanced(TreeNode root) {
if (root == null) { if (root == null) {
return true; return true;
@ -83,7 +84,7 @@ class Solution {
return Math.max(getHeight(root.left), getHeight(root.right)) + 1; return Math.max(getHeight(root.left), getHeight(root.right)) + 1;
} }
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -33,14 +33,15 @@ package leetcode.editor.cn;
import java.util.Stack; import java.util.Stack;
//面试题30:包含min函数的栈 //面试题30:包含min函数的栈
public class BaoHanMinhanShuDeZhanLcof{ public class BaoHanMinhanShuDeZhanLcof {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
// Solution solution = new BaoHanMinhanShuDeZhanLcof().new Solution(); // Solution solution = new BaoHanMinhanShuDeZhanLcof().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class MinStack { class MinStack {
Stack<Integer> stack; Stack<Integer> stack;
Stack<Integer> min; Stack<Integer> min;
@ -70,7 +71,7 @@ class MinStack {
public int min() { public int min() {
return min.peek(); return min.peek();
} }
} }
/** /**
* Your MinStack object will be instantiated and called as such: * Your MinStack object will be instantiated and called as such:

View File

@ -63,7 +63,7 @@ public class BasicCalculatorIi {
int num = 0; int num = 0;
Stack<Integer> stack = new Stack<>(); Stack<Integer> stack = new Stack<>();
char op = '+'; char op = '+';
s=s.replace(" ",""); s = s.replace(" ", "");
for (int i = 0; i < s.length(); i++) { for (int i = 0; i < s.length(); i++) {
char ch = s.charAt(i); char ch = s.charAt(i);
if (Character.isDigit(ch)) { if (Character.isDigit(ch)) {

View File

@ -23,14 +23,15 @@ import java.util.ArrayList;
import java.util.List; import java.util.List;
//145:二叉树的后序遍历 //145:二叉树的后序遍历
public class BinaryTreePostorderTraversal{ public class BinaryTreePostorderTraversal {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new BinaryTreePostorderTraversal().new Solution(); Solution solution = new BinaryTreePostorderTraversal().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for a binary tree node. * Definition for a binary tree node.
* public class TreeNode { * public class TreeNode {
* int val; * int val;
@ -45,10 +46,10 @@ public class BinaryTreePostorderTraversal{
* } * }
* } * }
*/ */
class Solution { class Solution {
public List<Integer> postorderTraversal(TreeNode root) { public List<Integer> postorderTraversal(TreeNode root) {
List<Integer> list = new ArrayList<>(); List<Integer> list = new ArrayList<>();
if(root==null){ if (root == null) {
return list; return list;
} }
list.addAll(postorderTraversal(root.left)); list.addAll(postorderTraversal(root.left));
@ -56,7 +57,7 @@ class Solution {
list.add(root.val); list.add(root.val);
return list; return list;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -34,7 +34,7 @@ public class BinaryTreeZigzagLevelOrderTraversal {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new BinaryTreeZigzagLevelOrderTraversal().new Solution(); Solution solution = new BinaryTreeZigzagLevelOrderTraversal().new Solution();
List<Integer> list = Arrays.asList(3,9,20,null,null,15,7); List<Integer> list = Arrays.asList(3, 9, 20, null, null, 15, 7);
solution.zigzagLevelOrder(new TreeNode(list)); solution.zigzagLevelOrder(new TreeNode(list));
} }
//力扣代码 //力扣代码
@ -56,7 +56,8 @@ public class BinaryTreeZigzagLevelOrderTraversal {
* } * }
*/ */
class Solution { class Solution {
public List<List<Integer>> zigzagLevelOrder(TreeNode root) {List<List<Integer>> ans = new LinkedList<List<Integer>>(); public List<List<Integer>> zigzagLevelOrder(TreeNode root) {
List<List<Integer>> ans = new LinkedList<List<Integer>>();
if (root == null) { if (root == null) {
return ans; return ans;
} }

View File

@ -26,15 +26,17 @@
// 👍 43 👎 0 // 👍 43 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//面试题 08.14:布尔运算 //面试题 08.14:布尔运算
public class BooleanEvaluationLcci{ public class BooleanEvaluationLcci {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new BooleanEvaluationLcci().new Solution(); Solution solution = new BooleanEvaluationLcci().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int countEval(String s, int result) { public int countEval(String s, int result) {
if (s.length() == 0) { if (s.length() == 0) {
return 0; return 0;
@ -70,7 +72,7 @@ class Solution {
} }
return dp[0][ch.length - 1][result]; return dp[0][ch.length - 1][result];
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -89,7 +89,7 @@ public class BuildAnArrayWithStackOperations {
if (!stack.isEmpty() && stack.peek() == i) { if (!stack.isEmpty() && stack.peek() == i) {
list.add("Push"); list.add("Push");
stack.pop(); stack.pop();
if(stack.isEmpty()){ if (stack.isEmpty()) {
break; break;
} }
} else { } else {

View File

@ -38,8 +38,9 @@
// Related Topics 数组 模拟 👍 2 👎 0 // Related Topics 数组 模拟 👍 2 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//1920:基于排列构建数组 //1920:基于排列构建数组
class BuildArrayFromPermutation{ class BuildArrayFromPermutation {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new BuildArrayFromPermutation().new Solution(); Solution solution = new BuildArrayFromPermutation().new Solution();
@ -47,7 +48,7 @@ class BuildArrayFromPermutation{
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int[] buildArray(int[] nums) { public int[] buildArray(int[] nums) {
int size = nums.length; int size = nums.length;
int[] arr = new int[size]; int[] arr = new int[size];
@ -56,7 +57,7 @@ class Solution {
} }
return arr; return arr;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -44,7 +44,7 @@ public class Ccw6C7 {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new Ccw6C7().new Solution(); Solution solution = new Ccw6C7().new Solution();
solution.paintingPlan(2,2); solution.paintingPlan(2, 2);
} }
//力扣代码 //力扣代码

View File

@ -98,7 +98,7 @@ class CheapestFlightsWithinKStops {
if (arr[0] != dst) { if (arr[0] != dst) {
use.add(arr[0]); use.add(arr[0]);
queue.add(new QueueEntity(arr[0], queueEntity.sum + arr[1], use)); queue.add(new QueueEntity(arr[0], queueEntity.sum + arr[1], use));
use.remove((Integer)arr[0]); use.remove((Integer) arr[0]);
} }
sums[arr[0]] = queueEntity.sum + arr[1]; sums[arr[0]] = queueEntity.sum + arr[1];
} }

View File

@ -58,8 +58,9 @@
// 👍 4 👎 0 // 👍 4 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//5948:判断一个括号字符串是否有效 //5948:判断一个括号字符串是否有效
class CheckIfAParenthesesStringCanBeValid{ class CheckIfAParenthesesStringCanBeValid {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CheckIfAParenthesesStringCanBeValid().new Solution(); Solution solution = new CheckIfAParenthesesStringCanBeValid().new Solution();
@ -67,7 +68,7 @@ class CheckIfAParenthesesStringCanBeValid{
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public boolean canBeValid(String s, String locked) { public boolean canBeValid(String s, String locked) {
int n = s.length(); int n = s.length();
int min = 0; int min = 0;
@ -89,7 +90,7 @@ class Solution {
} }
return min == 0 && max % 2 == 0; return min == 0 && max % 2 == 0;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -30,8 +30,9 @@
// Related Topics 哈希表 字符串 计数 👍 0 👎 0 // Related Topics 哈希表 字符串 计数 👍 0 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//1941:检查是否所有字符出现次数相同 //1941:检查是否所有字符出现次数相同
class CheckIfAllCharactersHaveEqualNumberOfOccurrences{ class CheckIfAllCharactersHaveEqualNumberOfOccurrences {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CheckIfAllCharactersHaveEqualNumberOfOccurrences().new Solution(); Solution solution = new CheckIfAllCharactersHaveEqualNumberOfOccurrences().new Solution();
@ -39,7 +40,7 @@ class CheckIfAllCharactersHaveEqualNumberOfOccurrences{
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public boolean areOccurrencesEqual(String s) { public boolean areOccurrencesEqual(String s) {
int[] arr = new int[26]; int[] arr = new int[26];
for (char ch : s.toCharArray()) { for (char ch : s.toCharArray()) {
@ -53,7 +54,7 @@ class Solution {
} }
return true; return true;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -40,7 +40,7 @@ public class CheckIfItIsAStraightLine {
public static void main(String[] args) { public static void main(String[] args) {
Solution solution = new CheckIfItIsAStraightLine().new Solution(); Solution solution = new CheckIfItIsAStraightLine().new Solution();
// TO TEST // TO TEST
TwoArray twoArray = new TwoArray("[[0,1],[1,3],[-4,-7],[5,11]]",true); TwoArray twoArray = new TwoArray("[[0,1],[1,3],[-4,-7],[5,11]]", true);
System.out.println(solution.checkStraightLine(twoArray.getArr())); System.out.println(solution.checkStraightLine(twoArray.getArr()));
} }

View File

@ -38,14 +38,15 @@ import java.util.ArrayList;
import java.util.List; import java.util.List;
//1832:判断句子是否为全字母句 //1832:判断句子是否为全字母句
public class CheckIfTheSentenceIsPangram{ public class CheckIfTheSentenceIsPangram {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CheckIfTheSentenceIsPangram().new Solution(); Solution solution = new CheckIfTheSentenceIsPangram().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public boolean checkIfPangram(String sentence) { public boolean checkIfPangram(String sentence) {
List<Character> list = new ArrayList<>(); List<Character> list = new ArrayList<>();
int num = 0; int num = 0;
@ -55,9 +56,9 @@ class Solution {
num++; num++;
} }
} }
return num==26; return num == 26;
}
} }
}
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -57,15 +57,17 @@
// 👍 4 👎 0 // 👍 4 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//1880:检查某单词是否等于两单词之和 //1880:检查某单词是否等于两单词之和
public class CheckIfWordEqualsSummationOfTwoWords{ public class CheckIfWordEqualsSummationOfTwoWords {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CheckIfWordEqualsSummationOfTwoWords().new Solution(); Solution solution = new CheckIfWordEqualsSummationOfTwoWords().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public boolean isSumEqual(String firstWord, String secondWord, String targetWord) { public boolean isSumEqual(String firstWord, String secondWord, String targetWord) {
return trans(firstWord) + trans(secondWord) == trans(targetWord); return trans(firstWord) + trans(secondWord) == trans(targetWord);
} }
@ -80,7 +82,7 @@ class Solution {
} }
return Integer.parseInt(numStr.toString()); return Integer.parseInt(numStr.toString());
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -46,27 +46,28 @@ package leetcode.editor.cn;
import java.util.*; import java.util.*;
//LCP 07:传递信息 //LCP 07:传递信息
public class ChuanDiXinXi{ public class ChuanDiXinXi {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new ChuanDiXinXi().new Solution(); Solution solution = new ChuanDiXinXi().new Solution();
System.out.println(solution.numWays(3,new int[][]{{0,2},{2,1}},2)); System.out.println(solution.numWays(3, new int[][]{{0, 2}, {2, 1}}, 2));
System.out.println(solution.numWays(5,new int[][]{{0,2},{2,1},{3,4},{2,3},{1,4},{2,0},{0,4}},3)); System.out.println(solution.numWays(5, new int[][]{{0, 2}, {2, 1}, {3, 4}, {2, 3}, {1, 4}, {2, 0}, {0, 4}}, 3));
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int numWays(int n, int[][] relation, int k) { public int numWays(int n, int[][] relation, int k) {
int[][] dp =new int[k+1][n]; int[][] dp = new int[k + 1][n];
dp[0][0] =1; dp[0][0] = 1;
for (int i = 0; i < k; i++) { for (int i = 0; i < k; i++) {
for (int[] ints : relation) { for (int[] ints : relation) {
dp[i + 1][ints[1]] += dp[i][ints[0]]; dp[i + 1][ints[1]] += dp[i][ints[0]];
} }
} }
return dp[k][n-1]; return dp[k][n - 1];
}
} }
}
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -78,7 +78,7 @@ import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
//133:克隆图 //133:克隆图
class CloneGraph{ class CloneGraph {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CloneGraph().new Solution(); Solution solution = new CloneGraph().new Solution();
@ -106,8 +106,9 @@ class Node {
} }
*/ */
class Solution { class Solution {
private HashMap<Node, Node> use = new HashMap<>(); private HashMap<Node, Node> use = new HashMap<>();
public Node cloneGraph(Node node) { public Node cloneGraph(Node node) {
if (node == null) { if (node == null) {
return node; return node;
@ -120,12 +121,12 @@ class Solution {
Node cloneNode = new Node(node.val, new ArrayList()); Node cloneNode = new Node(node.val, new ArrayList());
use.put(node, cloneNode); use.put(node, cloneNode);
for (Node neighbor: node.children) { for (Node neighbor : node.children) {
cloneNode.children.add(cloneGraph(neighbor)); cloneNode.children.add(cloneGraph(neighbor));
} }
return cloneNode; return cloneNode;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -52,9 +52,9 @@ public class CoinChange2 {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CoinChange2().new Solution(); Solution solution = new CoinChange2().new Solution();
System.out.println(solution.change(5,new int[]{1,2,5})); System.out.println(solution.change(5, new int[]{1, 2, 5}));
System.out.println(solution.change(3,new int[]{2})); System.out.println(solution.change(3, new int[]{2}));
System.out.println(solution.change(10,new int[]{10})); System.out.println(solution.change(10, new int[]{10}));
} }
//力扣代码 //力扣代码

View File

@ -95,7 +95,7 @@ public class CombinationSum {
use.add(candidates[i]); use.add(candidates[i]);
backtrack(candidates, i, use, sum + candidates[i], target); backtrack(candidates, i, use, sum + candidates[i], target);
use.remove(use.size() - 1); use.remove(use.size() - 1);
if(bl){ if (bl) {
break; break;
} }
} }

View File

@ -51,7 +51,8 @@ public class Combinations {
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
List<List<Integer>> list = new ArrayList<>(); List<List<Integer>> list = new ArrayList<>();
// public List<List<Integer>> combine(int n, int k) {
// public List<List<Integer>> combine(int n, int k) {
// int[] nums = new int[n]; // int[] nums = new int[n];
// for (int i = 0; i < n; i++) { // for (int i = 0; i < n; i++) {
// nums[i] = i + 1; // nums[i] = i + 1;

View File

@ -75,7 +75,7 @@ class CompareVersionNumbers {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CompareVersionNumbers().new Solution(); Solution solution = new CompareVersionNumbers().new Solution();
solution.compareVersion("0.1","1.1"); solution.compareVersion("0.1", "1.1");
} }
//力扣代码 //力扣代码

View File

@ -22,7 +22,7 @@ import java.util.ArrayList;
import java.util.List; import java.util.List;
//剑指 Offer 06:从尾到头打印链表 //剑指 Offer 06:从尾到头打印链表
class CongWeiDaoTouDaYinLianBiaoLcof{ class CongWeiDaoTouDaYinLianBiaoLcof {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CongWeiDaoTouDaYinLianBiaoLcof().new Solution(); Solution solution = new CongWeiDaoTouDaYinLianBiaoLcof().new Solution();
@ -30,7 +30,8 @@ class CongWeiDaoTouDaYinLianBiaoLcof{
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for singly-linked list. * Definition for singly-linked list.
* public class ListNode { * public class ListNode {
* int val; * int val;
@ -38,7 +39,7 @@ class CongWeiDaoTouDaYinLianBiaoLcof{
* ListNode(int x) { val = x; } * ListNode(int x) { val = x; }
* } * }
*/ */
class Solution { class Solution {
public int[] reversePrint(ListNode head) { public int[] reversePrint(ListNode head) {
List<Integer> list = new ArrayList<>(); List<Integer> list = new ArrayList<>();
while (head != null) { while (head != null) {
@ -52,7 +53,7 @@ class Solution {
} }
return arr; return arr;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -54,7 +54,7 @@ class ContainsDuplicate {
public boolean containsDuplicate(int[] nums) { public boolean containsDuplicate(int[] nums) {
Arrays.sort(nums); Arrays.sort(nums);
for (int i = 1; i < nums.length; i++) { for (int i = 1; i < nums.length; i++) {
if(nums[i]==nums[i-1]){ if (nums[i] == nums[i - 1]) {
return true; return true;
} }
} }

View File

@ -54,14 +54,15 @@ package leetcode.editor.cn;
import com.code.leet.entiy.ListNode; import com.code.leet.entiy.ListNode;
//1290:二进制链表转整数 //1290:二进制链表转整数
public class ConvertBinaryNumberInALinkedListToInteger{ public class ConvertBinaryNumberInALinkedListToInteger {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new ConvertBinaryNumberInALinkedListToInteger().new Solution(); Solution solution = new ConvertBinaryNumberInALinkedListToInteger().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for singly-linked list. * Definition for singly-linked list.
* public class ListNode { * public class ListNode {
* int val; * int val;
@ -69,7 +70,7 @@ public class ConvertBinaryNumberInALinkedListToInteger{
* ListNode(int x) { val = x; } * ListNode(int x) { val = x; }
* } * }
*/ */
class Solution { class Solution {
public int getDecimalValue(ListNode head) { public int getDecimalValue(ListNode head) {
int num = 0; int num = 0;
while (head != null) { while (head != null) {
@ -79,7 +80,7 @@ class Solution {
} }
return num; return num;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -38,14 +38,15 @@ package leetcode.editor.cn;
import com.code.leet.entiy.TreeNode; import com.code.leet.entiy.TreeNode;
//108:将有序数组转换为二叉搜索树 //108:将有序数组转换为二叉搜索树
class ConvertSortedArrayToBinarySearchTree{ class ConvertSortedArrayToBinarySearchTree {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new ConvertSortedArrayToBinarySearchTree().new Solution(); Solution solution = new ConvertSortedArrayToBinarySearchTree().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for a binary tree node. * Definition for a binary tree node.
* public class TreeNode { * public class TreeNode {
* int val; * int val;
@ -60,7 +61,7 @@ class ConvertSortedArrayToBinarySearchTree{
* } * }
* } * }
*/ */
class Solution { class Solution {
public TreeNode sortedArrayToBST(int[] nums) { public TreeNode sortedArrayToBST(int[] nums) {
return sortedArrayToBST(nums, 0, nums.length); return sortedArrayToBST(nums, 0, nums.length);
@ -77,7 +78,7 @@ class Solution {
return root; return root;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -74,7 +74,7 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
//138:复制带随机指针的链表 //138:复制带随机指针的链表
public class CopyListWithRandomPointer{ public class CopyListWithRandomPointer {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CopyListWithRandomPointer().new Solution(); Solution solution = new CopyListWithRandomPointer().new Solution();
@ -96,7 +96,7 @@ class Node {
} }
*/ */
class Solution { class Solution {
public Node copyRandomList(Node head) { public Node copyRandomList(Node head) {
Map<Node, Node> map = new HashMap<>(); Map<Node, Node> map = new HashMap<>();
return copy(head, map); return copy(head, map);
@ -115,7 +115,7 @@ class Solution {
node.random = copy(head.random, map); node.random = copy(head.random, map);
return node; return node;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -48,8 +48,9 @@
// Related Topics 数组 前缀和 👍 218 👎 0 // Related Topics 数组 前缀和 👍 218 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//1109:航班预订统计 //1109:航班预订统计
class CorporateFlightBookings{ class CorporateFlightBookings {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CorporateFlightBookings().new Solution(); Solution solution = new CorporateFlightBookings().new Solution();
@ -57,7 +58,7 @@ class CorporateFlightBookings{
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int[] corpFlightBookings(int[][] bookings, int n) { public int[] corpFlightBookings(int[][] bookings, int n) {
int[] result = new int[n]; int[] result = new int[n];
for (int[] booking : bookings) { for (int[] booking : bookings) {
@ -67,7 +68,7 @@ class Solution {
} }
return result; return result;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -42,14 +42,15 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
//1814:统计一个数组中好对子的数目 //1814:统计一个数组中好对子的数目
public class CountNicePairsInAnArray{ public class CountNicePairsInAnArray {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CountNicePairsInAnArray().new Solution(); Solution solution = new CountNicePairsInAnArray().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int countNicePairs(int[] nums) { public int countNicePairs(int[] nums) {
Map<Integer, Long> map = new HashMap<>(); Map<Integer, Long> map = new HashMap<>();
for (int num : nums) { for (int num : nums) {
@ -67,14 +68,15 @@ class Solution {
count += value * (value - 1) / 2; count += value * (value - 1) / 2;
} }
} }
return (int)(count % (Math.pow(10, 9) + 7)); return (int) (count % (Math.pow(10, 9) + 7));
} }
private int revert(int num){
String str = ""+num; private int revert(int num) {
String str = "" + num;
str = new StringBuilder(str).reverse().toString(); str = new StringBuilder(str).reverse().toString();
return Integer.parseInt(str); return Integer.parseInt(str);
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -34,7 +34,7 @@ class CountOfSmallerNumbersAfterSelf {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CountOfSmallerNumbersAfterSelf().new Solution(); Solution solution = new CountOfSmallerNumbersAfterSelf().new Solution();
System.out.println(solution.countSmaller(new int[]{1,-3,-2})); System.out.println(solution.countSmaller(new int[]{1, -3, -2}));
} }
//力扣代码 //力扣代码

View File

@ -28,8 +28,9 @@
// Related Topics 数学 枚举 👍 5 👎 0 // Related Topics 数学 枚举 👍 5 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//1925:统计平方和三元组的数目 //1925:统计平方和三元组的数目
class CountSquareSumTriples{ class CountSquareSumTriples {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new CountSquareSumTriples().new Solution(); Solution solution = new CountSquareSumTriples().new Solution();
@ -37,7 +38,7 @@ class CountSquareSumTriples{
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int countTriples(int n) { public int countTriples(int n) {
int count = 0; int count = 0;
for (int i = n; i > 0; i--) { for (int i = n; i > 0; i--) {
@ -52,7 +53,7 @@ class Solution {
} }
return count; return count;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -56,11 +56,11 @@ public class CountVowelsPermutation {
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int countVowelPermutation(int n) { public int countVowelPermutation(int n) {
int mod = (int)(1e9+7); int mod = (int) (1e9 + 7);
long[][] nums = new long[n][5]; long[][] nums = new long[n][5];
Arrays.fill(nums[0], 1); Arrays.fill(nums[0], 1);
for (int i = 1; i < n; i++) { for (int i = 1; i < n; i++) {
nums[i][0] = (nums[i - 1][1] + nums[i - 1][2]+nums[i-1][4]) % mod; nums[i][0] = (nums[i - 1][1] + nums[i - 1][2] + nums[i - 1][4]) % mod;
nums[i][1] = (nums[i - 1][0] + nums[i - 1][2]) % mod; nums[i][1] = (nums[i - 1][0] + nums[i - 1][2]) % mod;
nums[i][2] = (nums[i - 1][1] + nums[i - 1][3]) % mod; nums[i][2] = (nums[i - 1][1] + nums[i - 1][3]) % mod;
nums[i][3] = nums[i - 1][2]; nums[i][3] = nums[i - 1][2];
@ -70,7 +70,7 @@ public class CountVowelsPermutation {
for (int i = 0; i < 5; i++) { for (int i = 0; i < 5; i++) {
result += nums[n - 1][i]; result += nums[n - 1][i];
} }
return (int)(result % mod); return (int) (result % mod);
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)

View File

@ -62,7 +62,7 @@ public class CountingBits {
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int[] countBits(int n) { public int[] countBits(int n) {
int[] arrs = new int[n+1]; int[] arrs = new int[n + 1];
for (int i = 0; i <= n; i++) { for (int i = 0; i <= n; i++) {
arrs[i] = Integer.bitCount(i); arrs[i] = Integer.bitCount(i);
} }

View File

@ -75,11 +75,11 @@ public class CousinsInBinaryTree {
*/ */
class Solution { class Solution {
public boolean isCousins(TreeNode root, int x, int y) { public boolean isCousins(TreeNode root, int x, int y) {
int[][] paraent = getParent(root, x, y, new int[2][2], 1,-1); int[][] paraent = getParent(root, x, y, new int[2][2], 1, -1);
return paraent[0][0] != paraent[1][0] && paraent[0][1] == paraent[1][1]; return paraent[0][0] != paraent[1][0] && paraent[0][1] == paraent[1][1];
} }
private int[][] getParent(TreeNode root, int x, int y, int[][] paraent, int deep,int before) { private int[][] getParent(TreeNode root, int x, int y, int[][] paraent, int deep, int before) {
if (paraent[1][1] > 0) { if (paraent[1][1] > 0) {
return paraent; return paraent;
} }
@ -95,13 +95,13 @@ public class CousinsInBinaryTree {
} }
} }
if (root.left != null) { if (root.left != null) {
paraent = getParent(root.left, x, y, paraent, deep + 1,root.val); paraent = getParent(root.left, x, y, paraent, deep + 1, root.val);
} }
if (paraent[1][1] > 0) { if (paraent[1][1] > 0) {
return paraent; return paraent;
} }
if (root.right != null) { if (root.right != null) {
paraent = getParent(root.right, x, y, paraent, deep + 1,root.val); paraent = getParent(root.right, x, y, paraent, deep + 1, root.val);
} }
return paraent; return paraent;
} }

View File

@ -63,11 +63,11 @@ public class CutOffTreesForGolfEvent {
Solution solution = new CutOffTreesForGolfEvent().new Solution(); Solution solution = new CutOffTreesForGolfEvent().new Solution();
// TO TEST // TO TEST
List<List<Integer>> forest = Arrays.asList( List<List<Integer>> forest = Arrays.asList(
Arrays.asList(54581641,64080174,24346381,69107959) Arrays.asList(54581641, 64080174, 24346381, 69107959)
, Arrays.asList(86374198,61363882,68783324,79706116) , Arrays.asList(86374198, 61363882, 68783324, 79706116)
, Arrays.asList(668150, 92178815,89819108,94701471) , Arrays.asList(668150, 92178815, 89819108, 94701471)
, Arrays.asList(83920491,22724204,46281641,47531096) , Arrays.asList(83920491, 22724204, 46281641, 47531096)
, Arrays.asList(89078499,18904913,25462145,60813308)); , Arrays.asList(89078499, 18904913, 25462145, 60813308));
solution.cutOffTree(forest); solution.cutOffTree(forest);
} }

View File

@ -100,7 +100,7 @@ public class DecodedStringAtIndex {
} }
} }
for (int i = length-1; i >= 0; --i) { for (int i = length - 1; i >= 0; --i) {
K %= size; K %= size;
if (K == 0 && Character.isLetter(S.charAt(i))) { if (K == 0 && Character.isLetter(S.charAt(i))) {
return Character.toString(S.charAt(i)); return Character.toString(S.charAt(i));

View File

@ -74,7 +74,7 @@ public class DeleteColumnsToMakeSorted {
int count = 0; int count = 0;
for (int i = 0; i < strs[0].length(); i++) { for (int i = 0; i < strs[0].length(); i++) {
for (int j = 1; j < strs.length; j++) { for (int j = 1; j < strs.length; j++) {
if(strs[j].charAt(i)<strs[j-1].charAt(i)){ if (strs[j].charAt(i) < strs[j - 1].charAt(i)) {
count++; count++;
break; break;
} }

View File

@ -22,14 +22,15 @@ package leetcode.editor.cn;
import com.code.leet.entiy.ListNode; import com.code.leet.entiy.ListNode;
//面试题 02.03:删除中间节点 //面试题 02.03:删除中间节点
public class DeleteMiddleNodeLcci{ public class DeleteMiddleNodeLcci {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new DeleteMiddleNodeLcci().new Solution(); Solution solution = new DeleteMiddleNodeLcci().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for singly-linked list. * Definition for singly-linked list.
* public class ListNode { * public class ListNode {
* int val; * int val;
@ -37,12 +38,12 @@ public class DeleteMiddleNodeLcci{
* ListNode(int x) { val = x; } * ListNode(int x) { val = x; }
* } * }
*/ */
class Solution { class Solution {
public void deleteNode(ListNode node) { public void deleteNode(ListNode node) {
node.val = node.next.val; node.val = node.next.val;
node.next = node.next.next; node.next = node.next.next;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -40,14 +40,15 @@ package leetcode.editor.cn;
import com.code.leet.entiy.ListNode; import com.code.leet.entiy.ListNode;
//237:删除链表中的节点 //237:删除链表中的节点
public class DeleteNodeInALinkedList{ public class DeleteNodeInALinkedList {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new DeleteNodeInALinkedList().new Solution(); Solution solution = new DeleteNodeInALinkedList().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for singly-linked list. * Definition for singly-linked list.
* public class ListNode { * public class ListNode {
* int val; * int val;
@ -55,12 +56,12 @@ public class DeleteNodeInALinkedList{
* ListNode(int x) { val = x; } * ListNode(int x) { val = x; }
* } * }
*/ */
class Solution { class Solution {
public void deleteNode(ListNode node) { public void deleteNode(ListNode node) {
node.val = node.next.val; node.val = node.next.val;
node.next = node.next.next; node.next = node.next.next;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -82,7 +82,7 @@ public class DesignAStackWithIncrementOperation {
} }
public int pop() { public int pop() {
if(index==0){ if (index == 0) {
return -1; return -1;
} }
index--; index--;

View File

@ -69,14 +69,15 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
//1797:设计一个验证系统 //1797:设计一个验证系统
public class DesignAuthenticationManager{ public class DesignAuthenticationManager {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
// Solution solution = new DesignAuthenticationManager().new Solution(); // Solution solution = new DesignAuthenticationManager().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class AuthenticationManager { class AuthenticationManager {
Map<String, Integer> map = new HashMap<>(); Map<String, Integer> map = new HashMap<>();
int timeToLive; int timeToLive;
@ -96,14 +97,14 @@ class AuthenticationManager {
public int countUnexpiredTokens(int currentTime) { public int countUnexpiredTokens(int currentTime) {
int num = 0; int num = 0;
for (String key:map.keySet()) { for (String key : map.keySet()) {
if(map.get(key)>currentTime){ if (map.get(key) > currentTime) {
num++; num++;
} }
} }
return num; return num;
} }
} }
/** /**
* Your AuthenticationManager object will be instantiated and called as such: * Your AuthenticationManager object will be instantiated and called as such:

View File

@ -82,7 +82,7 @@ public class DesignFrontMiddleBackQueue {
} }
public void pushMiddle(int val) { public void pushMiddle(int val) {
list.add(list.size()/2, val); list.add(list.size() / 2, val);
} }
public void pushBack(int val) { public void pushBack(int val) {
@ -100,14 +100,14 @@ public class DesignFrontMiddleBackQueue {
if (list.isEmpty()) { if (list.isEmpty()) {
return -1; return -1;
} }
return list.remove((list.size()-1) / 2); return list.remove((list.size() - 1) / 2);
} }
public int popBack() { public int popBack() {
if (list.isEmpty()) { if (list.isEmpty()) {
return -1; return -1;
} }
return list.remove(list.size()-1); return list.remove(list.size() - 1);
} }
} }

View File

@ -51,23 +51,26 @@ import java.util.ArrayList;
import java.util.List; import java.util.List;
//705:设计哈希集合 //705:设计哈希集合
public class DesignHashset{ public class DesignHashset {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
// Solution solution = new DesignHashset().new Solution(); // Solution solution = new DesignHashset().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class MyHashSet { class MyHashSet {
List<Integer> list; List<Integer> list;
/** Initialize your data structure here. */ /**
* Initialize your data structure here.
*/
public MyHashSet() { public MyHashSet() {
list = new ArrayList<>(); list = new ArrayList<>();
} }
public void add(int key) { public void add(int key) {
if(list.contains(key)){ if (list.contains(key)) {
return; return;
} }
list.add(key); list.add(key);
@ -75,22 +78,24 @@ class MyHashSet {
public void remove(int key) { public void remove(int key) {
for (int i = 0; i < list.size(); i++) { for (int i = 0; i < list.size(); i++) {
if(list.get(i)==key){ if (list.get(i) == key) {
list.remove(i); list.remove(i);
} }
} }
} }
/** Returns true if this set contains the specified element */ /**
* Returns true if this set contains the specified element
*/
public boolean contains(int key) { public boolean contains(int key) {
for (int i = 0; i < list.size(); i++) { for (int i = 0; i < list.size(); i++) {
if(list.get(i)==key){ if (list.get(i) == key) {
return true; return true;
} }
} }
return false; return false;
} }
} }
/** /**
* Your MyHashSet object will be instantiated and called as such: * Your MyHashSet object will be instantiated and called as such:

View File

@ -68,7 +68,7 @@ class DestinationCity {
for (List<String> path : paths) { for (List<String> path : paths) {
if (!use.contains(path.get(1))) { if (!use.contains(path.get(1))) {
result.add(path.get(1)); result.add(path.get(1));
}else { } else {
use.remove(path.get(1)); use.remove(path.get(1));
} }
if (!result.contains(path.get(0))) { if (!result.contains(path.get(0))) {

View File

@ -44,15 +44,17 @@
// 👍 4 👎 0 // 👍 4 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//1812:判断国际象棋棋盘中一个格子的颜色 //1812:判断国际象棋棋盘中一个格子的颜色
public class DetermineColorOfAChessboardSquare{ public class DetermineColorOfAChessboardSquare {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new DetermineColorOfAChessboardSquare().new Solution(); Solution solution = new DetermineColorOfAChessboardSquare().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public boolean squareIsWhite(String coordinates) { public boolean squareIsWhite(String coordinates) {
char[] chars = coordinates.toCharArray(); char[] chars = coordinates.toCharArray();
if ((chars[0] - chars[1]) % 2 == 0) { if ((chars[0] - chars[1]) % 2 == 0) {
@ -61,7 +63,7 @@ class Solution {
return true; return true;
} }
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -65,7 +65,7 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
//1921:消灭怪物的最大数量 //1921:消灭怪物的最大数量
class EliminateMaximumNumberOfMonsters{ class EliminateMaximumNumberOfMonsters {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new EliminateMaximumNumberOfMonsters().new Solution(); Solution solution = new EliminateMaximumNumberOfMonsters().new Solution();
@ -73,7 +73,7 @@ class EliminateMaximumNumberOfMonsters{
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int eliminateMaximum(int[] dist, int[] speed) { public int eliminateMaximum(int[] dist, int[] speed) {
int size = dist.length; int size = dist.length;
int[] times = new int[size]; int[] times = new int[size];
@ -88,17 +88,17 @@ class Solution {
} }
int index = 1; int index = 1;
for (int i = 0; i < size; i++) { for (int i = 0; i < size; i++) {
if(map.containsKey(i)){ if (map.containsKey(i)) {
if(map.get(i)>index){ if (map.get(i) > index) {
return i+1; return i + 1;
} }
index-=map.get(i); index -= map.get(i);
} }
index++; index++;
} }
return size; return size;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -38,7 +38,7 @@ import java.util.List;
import java.util.Map; import java.util.Map;
//690:员工的重要性 //690:员工的重要性
public class EmployeeImportance{ public class EmployeeImportance {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new EmployeeImportance().new Solution(); Solution solution = new EmployeeImportance().new Solution();
@ -54,24 +54,26 @@ class Employee {
}; };
*/ */
class Solution { class Solution {
Map<Integer,Employee> map = new HashMap<>(); Map<Integer, Employee> map = new HashMap<>();
public int getImportance(List<Employee> employees, int id) { public int getImportance(List<Employee> employees, int id) {
for(Employee employee:employees){ for (Employee employee : employees) {
map.put(employee.id,employee); map.put(employee.id, employee);
} }
return dfs(id); return dfs(id);
} }
private int dfs(int id){
private int dfs(int id) {
Employee employee = map.get(id); Employee employee = map.get(id);
int total = employee.importance; int total = employee.importance;
List<Integer> subordinates = employee.subordinates; List<Integer> subordinates = employee.subordinates;
for(int subordinaty:subordinates){ for (int subordinaty : subordinates) {
total+=dfs(subordinaty); total += dfs(subordinaty);
} }
return total; return total;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -48,7 +48,7 @@ public class ExcelSheetColumnTitle {
StringBuilder result = new StringBuilder(); StringBuilder result = new StringBuilder();
while (columnNumber > 0) { while (columnNumber > 0) {
int num = (columnNumber - 1) % 26 + 1; int num = (columnNumber - 1) % 26 + 1;
result.insert(0, (char)((num - 1) + 'A')); result.insert(0, (char) ((num - 1) + 'A'));
columnNumber = (columnNumber - num) / 26; columnNumber = (columnNumber - num) / 26;
} }
return result.toString(); return result.toString();

View File

@ -24,14 +24,15 @@ package leetcode.editor.cn;
import com.code.leet.entiy.ListNode; import com.code.leet.entiy.ListNode;
//剑指 Offer 24:反转链表 //剑指 Offer 24:反转链表
public class FanZhuanLianBiaoLcof{ public class FanZhuanLianBiaoLcof {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new FanZhuanLianBiaoLcof().new Solution(); Solution solution = new FanZhuanLianBiaoLcof().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for singly-linked list. * Definition for singly-linked list.
* public class ListNode { * public class ListNode {
* int val; * int val;
@ -39,7 +40,7 @@ public class FanZhuanLianBiaoLcof{
* ListNode(int x) { val = x; } * ListNode(int x) { val = x; }
* } * }
*/ */
class Solution { class Solution {
public ListNode reverseList(ListNode head) { public ListNode reverseList(ListNode head) {
ListNode newHead = null; ListNode newHead = null;
ListNode p = head; ListNode p = head;
@ -55,7 +56,7 @@ class Solution {
} }
return newHead; return newHead;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -54,7 +54,7 @@ class FindAllAnagramsInAString {
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public List<Integer> findAnagrams(String s, String p) { public List<Integer> findAnagrams(String s, String p) {
if(p.length()>s.length()){ if (p.length() > s.length()) {
return new ArrayList<>(); return new ArrayList<>();
} }
int[] pchs = new int[26]; int[] pchs = new int[26];

View File

@ -48,7 +48,7 @@ public class FindFirstAndLastPositionOfElementInSortedArray {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new FindFirstAndLastPositionOfElementInSortedArray().new Solution(); Solution solution = new FindFirstAndLastPositionOfElementInSortedArray().new Solution();
solution.searchRange(new int[]{5,7,7,8,8,10},8);//3,4 solution.searchRange(new int[]{5, 7, 7, 8, 8, 10}, 8);//3,4
solution.searchRange(new int[]{5, 7, 7, 8, 8, 10}, 6);//-1,-1 solution.searchRange(new int[]{5, 7, 7, 8, 8, 10}, 6);//-1,-1
solution.searchRange(new int[]{2, 2}, 3);//-1,-1 solution.searchRange(new int[]{2, 2}, 3);//-1,-1
solution.searchRange(new int[]{1, 4}, 4);//1,1 solution.searchRange(new int[]{1, 4}, 4);//1,1
@ -92,7 +92,7 @@ public class FindFirstAndLastPositionOfElementInSortedArray {
mid /= 2; mid /= 2;
} }
} }
if(nums[mid] == target){ if (nums[mid] == target) {
break; break;
} }
} }

View File

@ -45,8 +45,9 @@
// 👍 2 👎 0 // 👍 2 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//1979:找出数组的最大公约数 //1979:找出数组的最大公约数
class FindGreatestCommonDivisorOfArray{ class FindGreatestCommonDivisorOfArray {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new FindGreatestCommonDivisorOfArray().new Solution(); Solution solution = new FindGreatestCommonDivisorOfArray().new Solution();
@ -54,7 +55,7 @@ class FindGreatestCommonDivisorOfArray{
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int findGCD(int[] nums) { public int findGCD(int[] nums) {
int max = Integer.MIN_VALUE; int max = Integer.MIN_VALUE;
int min = Integer.MAX_VALUE; int min = Integer.MAX_VALUE;
@ -69,7 +70,7 @@ class Solution {
} }
return 1; return 1;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -54,29 +54,30 @@ import java.util.Map;
import java.util.TreeMap; import java.util.TreeMap;
//436:寻找右区间 //436:寻找右区间
class FindRightInterval{ class FindRightInterval {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new FindRightInterval().new Solution(); Solution solution = new FindRightInterval().new Solution();
TwoArray twoArray = new TwoArray("[[1,4],[2,3],[3,4]]",true); TwoArray twoArray = new TwoArray("[[1,4],[2,3],[3,4]]", true);
solution.findRightInterval(twoArray.getArr()); solution.findRightInterval(twoArray.getArr());
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int[] findRightInterval(int[][] intervals) { public int[] findRightInterval(int[][] intervals) {
TreeMap<Integer, Integer> map = new TreeMap<>(); TreeMap<Integer, Integer> map = new TreeMap<>();
for (int i = 0; i < intervals.length; i++) { for (int i = 0; i < intervals.length; i++) {
map.put(intervals[i][0], i); map.put(intervals[i][0], i);
} }
int[] result = new int[intervals.length]; int[] result = new int[intervals.length];
for(int i = 0; i < intervals.length; i++){ for (int i = 0; i < intervals.length; i++) {
Integer key = map.higherKey(intervals[i][1]-1); Integer key = map.higherKey(intervals[i][1] - 1);
result[i] = key == null?-1:map.get(key); result[i] = key == null ? -1 : map.get(key);
} }
return result; return result;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -35,28 +35,28 @@
package leetcode.editor.cn; package leetcode.editor.cn;
//389:找不同 //389:找不同
public class FindTheDifference{ public class FindTheDifference {
public static void main(String[] args) { public static void main(String[] args) {
Solution solution = new FindTheDifference().new Solution(); Solution solution = new FindTheDifference().new Solution();
} }
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public char findTheDifference(String s, String t) { public char findTheDifference(String s, String t) {
int[] chs = new int[26]; int[] chs = new int[26];
for (char ch:s.toCharArray()){ for (char ch : s.toCharArray()) {
chs[ch-'a']++; chs[ch - 'a']++;
} }
for (char ch:t.toCharArray()){ for (char ch : t.toCharArray()) {
if(chs[ch-'a']==0){ if (chs[ch - 'a'] == 0) {
return ch; return ch;
} }
chs[ch-'a']--; chs[ch - 'a']--;
} }
return 'a'; return 'a';
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -39,19 +39,20 @@ package leetcode.editor.cn;
import java.util.Stack; import java.util.Stack;
//1673:找出最具竞争力的子序列 //1673:找出最具竞争力的子序列
public class FindTheMostCompetitiveSubsequence{ public class FindTheMostCompetitiveSubsequence {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new FindTheMostCompetitiveSubsequence().new Solution(); Solution solution = new FindTheMostCompetitiveSubsequence().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int[] mostCompetitive(int[] nums, int k) { public int[] mostCompetitive(int[] nums, int k) {
int size = nums.length; int size = nums.length;
Stack<Integer> stack = new Stack<>(); Stack<Integer> stack = new Stack<>();
for (int i = 0; i < size; i++) { for (int i = 0; i < size; i++) {
while (!stack.isEmpty()&&nums[i]< stack.peek()&&k-stack.size()<size-i){ while (!stack.isEmpty() && nums[i] < stack.peek() && k - stack.size() < size - i) {
stack.pop(); stack.pop();
} }
if (stack.size() < k) { if (stack.size() < k) {
@ -59,13 +60,13 @@ class Solution {
} }
} }
int[] result = new int[k]; int[] result = new int[k];
while (k>0){ while (k > 0) {
result[k-1]=stack.pop(); result[k - 1] = stack.pop();
k--; k--;
} }
return result; return result;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -44,7 +44,7 @@ import java.util.Arrays;
import java.util.List; import java.util.List;
//1980:找出不同的二进制字符串 //1980:找出不同的二进制字符串
class FindUniqueBinaryString{ class FindUniqueBinaryString {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new FindUniqueBinaryString().new Solution(); Solution solution = new FindUniqueBinaryString().new Solution();
@ -52,7 +52,7 @@ class FindUniqueBinaryString{
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public String findDifferentBinaryString(String[] nums) { public String findDifferentBinaryString(String[] nums) {
int n = nums.length; int n = nums.length;
List<String> list = Arrays.asList(nums); List<String> list = Arrays.asList(nums);
@ -68,7 +68,7 @@ class Solution {
} }
return null; return null;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -83,7 +83,7 @@ class FindValidMatrixGivenRowAndColumnSums {
int[][] arrs = new int[rowSum.length][colSum.length]; int[][] arrs = new int[rowSum.length][colSum.length];
for (int i = 0; i < rowSum.length; i++) { for (int i = 0; i < rowSum.length; i++) {
for (int j = 0; j < colSum.length; j++) { for (int j = 0; j < colSum.length; j++) {
arrs[i][j] = Math.min(rowSum[i],colSum[j]); arrs[i][j] = Math.min(rowSum[i], colSum[j]);
rowSum[i] -= arrs[i][j]; rowSum[i] -= arrs[i][j];
colSum[j] -= arrs[i][j]; colSum[j] -= arrs[i][j];
} }

View File

@ -65,14 +65,15 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
//1865:找出和为指定值的下标对 //1865:找出和为指定值的下标对
public class FindingPairsWithACertainSum{ public class FindingPairsWithACertainSum {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
// Solution solution = new FindingPairsWithACertainSum().new Solution(); // Solution solution = new FindingPairsWithACertainSum().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class FindSumPairs { class FindSumPairs {
int[] nums1; int[] nums1;
int[] nums2; int[] nums2;
@ -99,7 +100,7 @@ class FindSumPairs {
} }
return count; return count;
} }
} }
/** /**
* Your FindSumPairs object will be instantiated and called as such: * Your FindSumPairs object will be instantiated and called as such:

View File

@ -57,14 +57,15 @@ import java.util.List;
import java.util.Map; import java.util.Map;
//1817:查找用户活跃分钟数 //1817:查找用户活跃分钟数
public class FindingTheUsersActiveMinutes{ public class FindingTheUsersActiveMinutes {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new FindingTheUsersActiveMinutes().new Solution(); Solution solution = new FindingTheUsersActiveMinutes().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int[] findingUsersActiveMinutes(int[][] logs, int k) { public int[] findingUsersActiveMinutes(int[][] logs, int k) {
Map<Integer, List<Integer>> map = new HashMap<>(); Map<Integer, List<Integer>> map = new HashMap<>();
int min = Integer.MAX_VALUE; int min = Integer.MAX_VALUE;
@ -89,11 +90,11 @@ class Solution {
} }
for (int key : map.keySet()) { for (int key : map.keySet()) {
int index = map.get(key).size(); int index = map.get(key).size();
result[index-1] = result[index-1] + 1; result[index - 1] = result[index - 1] + 1;
} }
return result; return result;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -45,7 +45,7 @@ public class FirstMissingPositive {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new FirstMissingPositive().new Solution(); Solution solution = new FirstMissingPositive().new Solution();
solution.firstMissingPositive(new int[]{1,2,0}); solution.firstMissingPositive(new int[]{1, 2, 0});
} }
//力扣代码 //力扣代码

View File

@ -23,14 +23,15 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
//387:字符串中的第一个唯一字符 //387:字符串中的第一个唯一字符
class FirstUniqueCharacterInAString{ class FirstUniqueCharacterInAString {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new FirstUniqueCharacterInAString().new Solution(); Solution solution = new FirstUniqueCharacterInAString().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int firstUniqChar(String s) { public int firstUniqChar(String s) {
// for (int i = 0; i < s.length(); i++) { // for (int i = 0; i < s.length(); i++) {
// if(!s.substring(i+1).contains(""+s.charAt(i))&&!s.substring(0,i).contains(""+s.charAt(i))){ // if(!s.substring(i+1).contains(""+s.charAt(i))&&!s.substring(0,i).contains(""+s.charAt(i))){
@ -50,7 +51,7 @@ class Solution {
} }
return -1; return -1;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -81,7 +81,7 @@ public class FlattenNestedListIterator {
@Override @Override
public boolean hasNext() { public boolean hasNext() {
return index< list.size(); return index < list.size();
} }
} }

View File

@ -49,8 +49,8 @@ public class FlipGame {
public List<String> generatePossibleNextMoves(String currentState) { public List<String> generatePossibleNextMoves(String currentState) {
List<String> list = new ArrayList<>(); List<String> list = new ArrayList<>();
for (int i = 1; i < currentState.length(); i++) { for (int i = 1; i < currentState.length(); i++) {
if(currentState.charAt(i-1)=='+'&&currentState.charAt(i)=='+'){ if (currentState.charAt(i - 1) == '+' && currentState.charAt(i) == '+') {
list.add(currentState.substring(0,i-1)+"--"+currentState.substring(i+1)); list.add(currentState.substring(0, i - 1) + "--" + currentState.substring(i + 1));
} }
} }
return list; return list;

View File

@ -66,11 +66,11 @@ class FourSum {
if (i > 0 && nums[i] == nums[i - 1]) { if (i > 0 && nums[i] == nums[i - 1]) {
continue; continue;
} }
sum = (long)nums[i] + nums[i + 1] + nums[i + 2] + nums[i + 3]; sum = (long) nums[i] + nums[i + 1] + nums[i + 2] + nums[i + 3];
if (sum > target) { if (sum > target) {
break; break;
} }
sum = (long)nums[i] + nums[length - 3] + nums[length - 2] + nums[length - 1]; sum = (long) nums[i] + nums[length - 3] + nums[length - 2] + nums[length - 1];
if (sum < target) { if (sum < target) {
continue; continue;
} }
@ -78,18 +78,18 @@ class FourSum {
if (j > i + 1 && nums[j] == nums[j - 1]) { if (j > i + 1 && nums[j] == nums[j - 1]) {
continue; continue;
} }
sum = (long)nums[i] + nums[j] + nums[j + 1] + nums[j + 2]; sum = (long) nums[i] + nums[j] + nums[j + 1] + nums[j + 2];
if (sum > target) { if (sum > target) {
break; break;
} }
sum = (long)nums[i] + nums[j] + nums[length - 2] + nums[length - 1]; sum = (long) nums[i] + nums[j] + nums[length - 2] + nums[length - 1];
if (sum < target) { if (sum < target) {
continue; continue;
} }
int start = j + 1; int start = j + 1;
int end = length - 1; int end = length - 1;
while (start < end) { while (start < end) {
sum = (long)nums[i] + nums[j] + nums[start] + nums[end]; sum = (long) nums[i] + nums[j] + nums[start] + nums[end];
if (sum == target) { if (sum == target) {
result.add(Arrays.asList(nums[i], nums[j], nums[start], nums[end])); result.add(Arrays.asList(nums[i], nums[j], nums[start], nums[end]));
while (start < end && nums[start] == nums[start + 1]) { while (start < end && nums[start] == nums[start + 1]) {

View File

@ -28,15 +28,17 @@
// 👍 25 👎 0 // 👍 25 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//LCP 28:采购方案 //LCP 28:采购方案
public class FourXy4Wx{ public class FourXy4Wx {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new FourXy4Wx().new Solution(); Solution solution = new FourXy4Wx().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int purchasePlans(int[] nums, int target) { public int purchasePlans(int[] nums, int target) {
int[] sort = new int[target]; int[] sort = new int[target];
long[] count = new long[target]; long[] count = new long[target];
@ -58,7 +60,7 @@ class Solution {
} }
return (int) (result / 2 % (Math.pow(10, 9) + 7)); return (int) (result / 2 % (Math.pow(10, 9) + 7));
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -49,20 +49,21 @@ package leetcode.editor.cn;
import java.util.Arrays; import java.util.Arrays;
//5739:最高频元素的频数 //5739:最高频元素的频数
public class FrequencyOfTheMostFrequentElement{ public class FrequencyOfTheMostFrequentElement {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new FrequencyOfTheMostFrequentElement().new Solution(); Solution solution = new FrequencyOfTheMostFrequentElement().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int maxFrequency(int[] nums, int k) { public int maxFrequency(int[] nums, int k) {
Arrays.sort(nums); Arrays.sort(nums);
int ans = 1; int ans = 1;
for(int i = 1, j = 0, sum = 0; i < nums.length; i += 1){ for (int i = 1, j = 0, sum = 0; i < nums.length; i += 1) {
sum += (nums[i] - nums[i - 1]) * (i - j); sum += (nums[i] - nums[i - 1]) * (i - j);
while(sum > k){ while (sum > k) {
sum -= nums[i] - nums[j]; sum -= nums[i] - nums[j];
j += 1; j += 1;
} }
@ -70,7 +71,7 @@ class Solution {
} }
return ans; return ans;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -44,7 +44,7 @@ class GenerateParentheses {
class Solution { class Solution {
public List<String> generateParenthesis(int n) { public List<String> generateParenthesis(int n) {
List<String> result = new ArrayList<>(); List<String> result = new ArrayList<>();
dfs(n,0,"",result); dfs(n, 0, "", result);
return result; return result;
} }

View File

@ -60,14 +60,15 @@ import java.util.*;
import java.util.stream.Collectors; import java.util.stream.Collectors;
//1878:矩阵中最大的三个菱形和 //1878:矩阵中最大的三个菱形和
public class GetBiggestThreeRhombusSumsInAGrid{ public class GetBiggestThreeRhombusSumsInAGrid {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new GetBiggestThreeRhombusSumsInAGrid().new Solution(); Solution solution = new GetBiggestThreeRhombusSumsInAGrid().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int[] getBiggestThree(int[][] grid) { public int[] getBiggestThree(int[][] grid) {
Set<Integer> set = new HashSet<>(); Set<Integer> set = new HashSet<>();
new TreeSet<>(Comparator.reverseOrder()); new TreeSet<>(Comparator.reverseOrder());
@ -98,7 +99,7 @@ class Solution {
} }
return result; return result;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -44,7 +44,7 @@ public class GreatestCommonDivisorOfStrings {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new GreatestCommonDivisorOfStrings().new Solution(); Solution solution = new GreatestCommonDivisorOfStrings().new Solution();
solution.gcdOfStrings("TAUXXTAUXXTAUXXTAUXXTAUXX","TAUXXTAUXXTAUXXTAUXXTAUXXTAUXXTAUXXTAUXXTAUXX"); solution.gcdOfStrings("TAUXXTAUXXTAUXXTAUXXTAUXX", "TAUXXTAUXXTAUXXTAUXXTAUXXTAUXXTAUXXTAUXXTAUXX");
} }
//力扣代码 //力扣代码

View File

@ -39,33 +39,33 @@ package leetcode.editor.cn;
import java.util.*; import java.util.*;
//49:字母异位词分组 //49:字母异位词分组
class GroupAnagrams{ class GroupAnagrams {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new GroupAnagrams().new Solution(); Solution solution = new GroupAnagrams().new Solution();
solution.groupAnagrams(new String[]{"eat","tea","tan","ate","nat","bat"}); solution.groupAnagrams(new String[]{"eat", "tea", "tan", "ate", "nat", "bat"});
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public List<List<String>> groupAnagrams(String[] strs) { public List<List<String>> groupAnagrams(String[] strs) {
Map<String,List<String>> map = new HashMap<>(); Map<String, List<String>> map = new HashMap<>();
for(String s:strs){ for (String s : strs) {
char[] chs = s.toCharArray(); char[] chs = s.toCharArray();
Arrays.sort(chs); Arrays.sort(chs);
String str = Arrays.toString(chs); String str = Arrays.toString(chs);
List<String> list = map.getOrDefault(str,new ArrayList<>()); List<String> list = map.getOrDefault(str, new ArrayList<>());
list.add(s); list.add(s);
map.put(str,new ArrayList<>(list)); map.put(str, new ArrayList<>(list));
} }
List<List<String>> result = new ArrayList<>(); List<List<String>> result = new ArrayList<>();
for (String key:map.keySet()){ for (String key : map.keySet()) {
result.add(new ArrayList<>(map.get(key))); result.add(new ArrayList<>(map.get(key)));
} }
return result; return result;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -26,30 +26,31 @@ package leetcode.editor.cn;
import java.util.*; import java.util.*;
//面试题 10.02:变位词组 //面试题 10.02:变位词组
class GroupAnagramsLcci{ class GroupAnagramsLcci {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new GroupAnagramsLcci().new Solution(); Solution solution = new GroupAnagramsLcci().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public List<List<String>> groupAnagrams(String[] strs) { public List<List<String>> groupAnagrams(String[] strs) {
Map<String,List<String>> map = new HashMap<>(); Map<String, List<String>> map = new HashMap<>();
for (String str:strs){ for (String str : strs) {
char[] chars = str.toCharArray(); char[] chars = str.toCharArray();
Arrays.sort(chars); Arrays.sort(chars);
List<String> list = map.getOrDefault(new String(chars),new ArrayList<>()); List<String> list = map.getOrDefault(new String(chars), new ArrayList<>());
list.add(str); list.add(str);
map.put(new String(chars),list); map.put(new String(chars), list);
} }
List<List<String>> result = new ArrayList<>(); List<List<String>> result = new ArrayList<>();
for (String key: map.keySet()){ for (String key : map.keySet()) {
result.add(map.get(key)); result.add(map.get(key));
} }
return result; return result;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -29,7 +29,7 @@ public class HIndex {
//测试代码 //测试代码
Solution solution = new HIndex().new Solution(); Solution solution = new HIndex().new Solution();
//3 //3
System.out.println(solution.hIndex(new int[]{3,0,6,1,5})); System.out.println(solution.hIndex(new int[]{3, 0, 6, 1, 5}));
//0 //0
System.out.println(solution.hIndex(new int[]{0})); System.out.println(solution.hIndex(new int[]{0}));
} }

View File

@ -64,12 +64,13 @@ public class HouseRobberIi {
} }
return Math.max(range(Arrays.copyOfRange(nums, 0, length - 1)), range(Arrays.copyOfRange(nums, 1, length))); return Math.max(range(Arrays.copyOfRange(nums, 0, length - 1)), range(Arrays.copyOfRange(nums, 1, length)));
} }
public int range(int[] nums) { public int range(int[] nums) {
int length = nums.length; int length = nums.length;
int start = nums[0],end = Math.max(nums[0],nums[1]); int start = nums[0], end = Math.max(nums[0], nums[1]);
for (int i = 2; i < length; i++) { for (int i = 2; i < length; i++) {
int temp = end; int temp = end;
end = Math.max(start+nums[i],end); end = Math.max(start + nums[i], end);
start = temp; start = temp;
} }
return end; return end;

View File

@ -47,14 +47,14 @@ import java.util.Collections;
import java.util.List; import java.util.List;
//1365:有多少小于当前数字的数字 //1365:有多少小于当前数字的数字
public class HowManyNumbersAreSmallerThanTheCurrentNumber{ public class HowManyNumbersAreSmallerThanTheCurrentNumber {
public static void main(String[] args) { public static void main(String[] args) {
Solution solution = new HowManyNumbersAreSmallerThanTheCurrentNumber().new Solution(); Solution solution = new HowManyNumbersAreSmallerThanTheCurrentNumber().new Solution();
} }
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int[] smallerNumbersThanCurrent(int[] nums) { public int[] smallerNumbersThanCurrent(int[] nums) {
List<Integer> list = new ArrayList<>(); List<Integer> list = new ArrayList<>();
for (int i = 0; i < nums.length; i++) { for (int i = 0; i < nums.length; i++) {
@ -67,7 +67,7 @@ class Solution {
} }
return arrs; return arrs;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -67,14 +67,15 @@ package leetcode.editor.cn;
import java.util.Stack; import java.util.Stack;
//1410:HTML 实体解析器 //1410:HTML 实体解析器
public class HtmlEntityParser{ public class HtmlEntityParser {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new HtmlEntityParser().new Solution(); Solution solution = new HtmlEntityParser().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public String entityParser(String text) { public String entityParser(String text) {
return text. return text.
replace("&quot;", "\""). replace("&quot;", "\"").
@ -84,7 +85,7 @@ class Solution {
replace("&frasl;", "/"). replace("&frasl;", "/").
replace("&amp;", "&"); replace("&amp;", "&");
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -91,11 +91,11 @@ public class ImplementQueueUsingStacks {
* Push element x to the back of queue. * Push element x to the back of queue.
*/ */
public void push(int x) { public void push(int x) {
while (!stack1.empty()){ while (!stack1.empty()) {
stack2.push(stack1.pop()); stack2.push(stack1.pop());
} }
stack1.push(x); stack1.push(x);
while (!stack2.isEmpty()){ while (!stack2.isEmpty()) {
stack1.push(stack2.pop()); stack1.push(stack2.pop());
} }
} }

View File

@ -114,7 +114,7 @@ public class ImplementTriePrefixTree {
if (trie.son[index] == null) { if (trie.son[index] == null) {
return false; return false;
} }
if (i == size-1 && !trie.son[index].isEnd) { if (i == size - 1 && !trie.son[index].isEnd) {
return false; return false;
} }
trie = trie.son[index]; trie = trie.son[index];

View File

@ -39,7 +39,7 @@ class IncreasingSubsequences {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new IncreasingSubsequences().new Solution(); Solution solution = new IncreasingSubsequences().new Solution();
System.out.println(solution.findSubsequences(new int[]{4,6,7,7})); System.out.println(solution.findSubsequences(new int[]{4, 6, 7, 7}));
} }
//力扣代码 //力扣代码
@ -47,12 +47,13 @@ class IncreasingSubsequences {
class Solution { class Solution {
private List<Integer> path = new ArrayList<>(); private List<Integer> path = new ArrayList<>();
private List<List<Integer>> res = new ArrayList<>(); private List<List<Integer>> res = new ArrayList<>();
public List<List<Integer>> findSubsequences(int[] nums) { public List<List<Integer>> findSubsequences(int[] nums) {
backtracking(nums,0); backtracking(nums, 0);
return res; return res;
} }
private void backtracking (int[] nums, int start) { private void backtracking(int[] nums, int start) {
if (path.size() > 1) { if (path.size() > 1) {
res.add(new ArrayList<>(path)); res.add(new ArrayList<>(path));
} }

View File

@ -42,15 +42,17 @@
// 👍 2 👎 0 // 👍 2 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//1860:增长的内存泄露 //1860:增长的内存泄露
public class IncrementalMemoryLeak{ public class IncrementalMemoryLeak {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new IncrementalMemoryLeak().new Solution(); Solution solution = new IncrementalMemoryLeak().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int[] memLeak(int memory1, int memory2) { public int[] memLeak(int memory1, int memory2) {
boolean isOne = memory1 >= memory2; boolean isOne = memory1 >= memory2;
int i = 1; int i = 1;
@ -69,9 +71,9 @@ class Solution {
i++; i++;
isOne = memory1 >= memory2; isOne = memory1 >= memory2;
} }
return new int[]{i,memory1,memory2}; return new int[]{i, memory1, memory2};
}
} }
}
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -35,14 +35,15 @@ package leetcode.editor.cn;
import com.code.leet.entiy.ListNode; import com.code.leet.entiy.ListNode;
//147:对链表进行插入排序 //147:对链表进行插入排序
public class InsertionSortList{ public class InsertionSortList {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new InsertionSortList().new Solution(); Solution solution = new InsertionSortList().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for singly-linked list. * Definition for singly-linked list.
* public class ListNode { * public class ListNode {
* int val; * int val;
@ -52,7 +53,7 @@ public class InsertionSortList{
* ListNode(int val, ListNode next) { this.val = val; this.next = next; } * ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* } * }
*/ */
class Solution { class Solution {
public ListNode insertionSortList(ListNode head) { public ListNode insertionSortList(ListNode head) {
if (head == null || head.next == null) { if (head == null || head.next == null) {
return head; return head;
@ -82,7 +83,7 @@ class Solution {
} }
return head; return head;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -70,18 +70,20 @@
// 👍 593 👎 0 // 👍 593 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//12:整数转罗马数字 //12:整数转罗马数字
public class IntegerToRoman{ public class IntegerToRoman {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new IntegerToRoman().new Solution(); Solution solution = new IntegerToRoman().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public String intToRoman(int num) { public String intToRoman(int num) {
int[] values = new int[]{1000,900,500,400,100,90,50,40,10,9,5,4,1}; int[] values = new int[]{1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1};
String[] labels = new String[]{"M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"}; String[] labels = new String[]{"M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I"};
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
for (int i = 0; i < values.length && num > 0; i++) { for (int i = 0; i < values.length && num > 0; i++) {
int value = values[i]; int value = values[i];
@ -93,7 +95,7 @@ class Solution {
} }
return sb.toString(); return sb.toString();
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -39,34 +39,35 @@ import java.util.Arrays;
import java.util.List; import java.util.List;
//350:两个数组的交集 II //350:两个数组的交集 II
class IntersectionOfTwoArraysIi{ class IntersectionOfTwoArraysIi {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new IntersectionOfTwoArraysIi().new Solution(); Solution solution = new IntersectionOfTwoArraysIi().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int[] intersect(int[] nums1, int[] nums2) { public int[] intersect(int[] nums1, int[] nums2) {
Arrays.sort(nums1); Arrays.sort(nums1);
Arrays.sort(nums2); Arrays.sort(nums2);
List<Integer> list = new ArrayList<>(); List<Integer> list = new ArrayList<>();
int index1 = 0; int index1 = 0;
int index2 = 0; int index2 = 0;
while(index1<nums1.length&&index2<nums2.length){ while (index1 < nums1.length && index2 < nums2.length) {
if(nums1[index1]==nums2[index2]){ if (nums1[index1] == nums2[index2]) {
list.add(nums1[index1]); list.add(nums1[index1]);
index1++; index1++;
index2++; index2++;
}else if (nums1[index1]>nums2[index2]){ } else if (nums1[index1] > nums2[index2]) {
index2++; index2++;
}else{ } else {
index1++; index1++;
} }
} }
return list.stream().mapToInt(Integer::intValue).toArray(); return list.stream().mapToInt(Integer::intValue).toArray();
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -74,14 +74,15 @@ package leetcode.editor.cn;
import com.code.leet.entiy.ListNode; import com.code.leet.entiy.ListNode;
//160:相交链表 //160:相交链表
public class IntersectionOfTwoLinkedLists{ public class IntersectionOfTwoLinkedLists {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new IntersectionOfTwoLinkedLists().new Solution(); Solution solution = new IntersectionOfTwoLinkedLists().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for singly-linked list. * Definition for singly-linked list.
* public class ListNode { * public class ListNode {
* int val; * int val;
@ -92,10 +93,10 @@ public class IntersectionOfTwoLinkedLists{
* } * }
* } * }
*/ */
public class Solution { public class Solution {
public ListNode getIntersectionNode(ListNode headA, ListNode headB) { public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
ListNode pA = headA, pB = headB; ListNode pA = headA, pB = headB;
if(pA == null || pB == null){ if (pA == null || pB == null) {
return null; return null;
} }
while (pA != null || pB != null) { while (pA != null || pB != null) {
@ -113,7 +114,7 @@ public class Solution {
} }
return null; return null;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -17,14 +17,15 @@ package leetcode.editor.cn;
import com.code.leet.entiy.ListNode; import com.code.leet.entiy.ListNode;
//面试题 02.07:链表相交 //面试题 02.07:链表相交
public class IntersectionOfTwoLinkedListsLcci{ public class IntersectionOfTwoLinkedListsLcci {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new IntersectionOfTwoLinkedListsLcci().new Solution(); Solution solution = new IntersectionOfTwoLinkedListsLcci().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for singly-linked list. * Definition for singly-linked list.
* public class ListNode { * public class ListNode {
* int val; * int val;
@ -35,10 +36,10 @@ public class IntersectionOfTwoLinkedListsLcci{
* } * }
* } * }
*/ */
public class Solution { public class Solution {
public ListNode getIntersectionNode(ListNode headA, ListNode headB) { public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
ListNode pA = headA, pB = headB; ListNode pA = headA, pB = headB;
if(pA == null || pB == null){ if (pA == null || pB == null) {
return null; return null;
} }
while (pA != null || pB != null) { while (pA != null || pB != null) {
@ -56,7 +57,7 @@ public class Solution {
} }
return null; return null;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -30,14 +30,15 @@ package leetcode.editor.cn;
import com.code.leet.entiy.TreeNode; import com.code.leet.entiy.TreeNode;
//226:翻转二叉树 //226:翻转二叉树
public class InvertBinaryTree{ public class InvertBinaryTree {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new InvertBinaryTree().new Solution(); Solution solution = new InvertBinaryTree().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
/**
/**
* Definition for a binary tree node. * Definition for a binary tree node.
* public class TreeNode { * public class TreeNode {
* int val; * int val;
@ -52,7 +53,7 @@ public class InvertBinaryTree{
* } * }
* } * }
*/ */
class Solution { class Solution {
public TreeNode invertTree(TreeNode root) { public TreeNode invertTree(TreeNode root) {
if (root == null) { if (root == null) {
return null; return null;
@ -62,7 +63,7 @@ class Solution {
root.right = left; root.right = left;
return root; return root;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -60,7 +60,7 @@ public class IsGraphBipartite {
Solution solution = new IsGraphBipartite().new Solution(); Solution solution = new IsGraphBipartite().new Solution();
// TwoArray twoArray = new TwoArray("[[1,3],[0,2],[1,3],[0,2]]"); // TwoArray twoArray = new TwoArray("[[1,3],[0,2],[1,3],[0,2]]");
System.out.println("-------------------------------"); System.out.println("-------------------------------");
TwoArray twoArray = new TwoArray("[[],[2,4,6],[1,4,8,9],[7,8],[1,2,8,9],[6,9],[1,5,7,8,9],[3,6,9],[2,3,4,6,9],[2,4,5,6,7,8]]",false); TwoArray twoArray = new TwoArray("[[],[2,4,6],[1,4,8,9],[7,8],[1,2,8,9],[6,9],[1,5,7,8,9],[3,6,9],[2,3,4,6,9],[2,4,5,6,7,8]]", false);
System.out.println(solution.isBipartite(twoArray.getArr())); System.out.println(solution.isBipartite(twoArray.getArr()));
} }

View File

@ -42,30 +42,31 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
//205:同构字符串 //205:同构字符串
public class IsomorphicStrings{ public class IsomorphicStrings {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new IsomorphicStrings().new Solution(); Solution solution = new IsomorphicStrings().new Solution();
solution.isIsomorphic("badc","baba"); solution.isIsomorphic("badc", "baba");
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public boolean isIsomorphic(String s, String t) { public boolean isIsomorphic(String s, String t) {
Map<Character,Character> sMap = new HashMap<>(); Map<Character, Character> sMap = new HashMap<>();
Map<Character,Character> tMap = new HashMap<>(); Map<Character, Character> tMap = new HashMap<>();
for (int i = 0; i < s.length(); i++) { for (int i = 0; i < s.length(); i++) {
char sch = s.charAt(i); char sch = s.charAt(i);
char tch = t.charAt(i); char tch = t.charAt(i);
if((sMap.containsKey(sch)&&sMap.get(sch)!=tch)||(tMap.containsKey(tch)&&tMap.get(tch)!=sch)){ if ((sMap.containsKey(sch) && sMap.get(sch) != tch) || (tMap.containsKey(tch) && tMap.get(tch) != sch)) {
return false; return false;
} }
sMap.put(sch,tch); sMap.put(sch, tch);
tMap.put(tch,sch); tMap.put(tch, sch);
} }
return true; return true;
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -59,7 +59,7 @@ public class JEj789 {
mins[i][1] = costs[i][1] + Math.min(mins[i - 1][0], mins[i - 1][2]); mins[i][1] = costs[i][1] + Math.min(mins[i - 1][0], mins[i - 1][2]);
mins[i][2] = costs[i][2] + Math.min(mins[i - 1][0], mins[i - 1][1]); mins[i][2] = costs[i][2] + Math.min(mins[i - 1][0], mins[i - 1][1]);
} }
return Math.min(Math.min(mins[length-1][0],mins[length-1][1]),mins[length-1][2]); return Math.min(Math.min(mins[length - 1][0], mins[length - 1][1]), mins[length - 1][2]);
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)

View File

@ -36,37 +36,39 @@
// 👍 1053 👎 0 // 👍 1053 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//45:跳跃游戏 II //45:跳跃游戏 II
public class JumpGameIi{ public class JumpGameIi {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new JumpGameIi().new Solution(); Solution solution = new JumpGameIi().new Solution();
System.out.println(solution.jump(new int[]{2,3,1,1,4})); System.out.println(solution.jump(new int[]{2, 3, 1, 1, 4}));
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int jump(int[] nums) { public int jump(int[] nums) {
if(nums.length==1){ if (nums.length == 1) {
return 0; return 0;
} }
int max = 0; int max = 0;
int[] counts = new int[nums.length]; int[] counts = new int[nums.length];
for (int i = 0; i < nums.length; i++) { for (int i = 0; i < nums.length; i++) {
int next = i+nums[i]; int next = i + nums[i];
if(next>=nums.length-1){ if (next >= nums.length - 1) {
return counts[i]+1; return counts[i] + 1;
} }
if(next>max){ if (next > max) {
for (int j = max+1; j <= next; j++) { for (int j = max + 1; j <= next; j++) {
counts[j] = counts[i]+1; counts[j] = counts[i] + 1;
} }
max = next; max = next;
} }
} }
return counts[nums.length-1]; return counts[nums.length - 1];
}
} }
}
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

View File

@ -66,7 +66,7 @@ public class JumpGameIv {
public static void main(String[] args) { public static void main(String[] args) {
Solution solution = new JumpGameIv().new Solution(); Solution solution = new JumpGameIv().new Solution();
// TO TEST // TO TEST
solution.minJumps(new int[]{100,-23,-23,404,100,23,23,23,3,404}); solution.minJumps(new int[]{100, -23, -23, 404, 100, 23, 23, 23, 3, 404});
} }
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)

View File

@ -42,19 +42,20 @@ import java.util.Arrays;
import java.util.Comparator; import java.util.Comparator;
//973:最接近原点的 K 个点 //973:最接近原点的 K 个点
class KClosestPointsToOrigin{ class KClosestPointsToOrigin {
public static void main(String[] args) { public static void main(String[] args) {
//测试代码 //测试代码
Solution solution = new KClosestPointsToOrigin().new Solution(); Solution solution = new KClosestPointsToOrigin().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {
public int[][] kClosest(int[][] points, int k) { public int[][] kClosest(int[][] points, int k) {
Arrays.sort(points, Comparator.comparingInt(point -> (point[0] * point[0] + point[1] * point[1]))); Arrays.sort(points, Comparator.comparingInt(point -> (point[0] * point[0] + point[1] * point[1])));
return Arrays.copyOfRange(points, 0, k); return Arrays.copyOfRange(points, 0, k);
} }
} }
//leetcode submit region end(Prohibit modification and deletion) //leetcode submit region end(Prohibit modification and deletion)
} }

Some files were not shown because too many files have changed in this diff Show More