mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-09 11:34:46 +08:00
@ -162,6 +162,33 @@ class Solution {
|
|||||||
return deque.isEmpty();
|
return deque.isEmpty();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// 方法2
|
||||||
|
class Solution {
|
||||||
|
public boolean isValid(String s) {
|
||||||
|
|
||||||
|
Stack<Character> stack = new Stack<>();
|
||||||
|
Map<Character, Character> map = new HashMap<Character, Character>() {
|
||||||
|
{
|
||||||
|
put('}', '{');
|
||||||
|
put(']', '[');
|
||||||
|
put(')', '(');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
for (Character c : s.toCharArray()) { // 顺序读取字符
|
||||||
|
if (!stack.isEmpty() && map.containsKey(c)) { // 是右括号 && 栈不为空
|
||||||
|
if (stack.peek() == map.get(c)) { // 取其对应的左括号直接和栈顶比
|
||||||
|
stack.pop(); // 相同则抵消,出栈
|
||||||
|
} else {
|
||||||
|
return false; // 不同则直接返回
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
stack.push(c); // 左括号,直接入栈
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return stack.isEmpty(); // 看左右是否抵消完
|
||||||
|
}
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
@ -86,7 +86,27 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
Java:
|
Java:
|
||||||
|
```java
|
||||||
|
// 虚拟头结点
|
||||||
|
class Solution {
|
||||||
|
public ListNode swapPairs(ListNode head) {
|
||||||
|
|
||||||
|
ListNode dummyNode = new ListNode(0);
|
||||||
|
dummyNode.next = head;
|
||||||
|
ListNode prev = dummyNode;
|
||||||
|
|
||||||
|
while (prev.next != null && prev.next.next != null) {
|
||||||
|
ListNode temp = head.next.next; // 缓存 next
|
||||||
|
prev.next = head.next; // 将 prev 的 next 改为 head 的 next
|
||||||
|
head.next.next = head; // 将 head.next(prev.next) 的next,指向 head
|
||||||
|
head.next = temp; // 将head 的 next 接上缓存的temp
|
||||||
|
prev = head; // 步进1位
|
||||||
|
head = head.next; // 步进1位
|
||||||
|
}
|
||||||
|
return dummyNode.next;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
|
||||||
|
@ -213,6 +213,28 @@ public:
|
|||||||
|
|
||||||
Java:
|
Java:
|
||||||
|
|
||||||
|
```java
|
||||||
|
// 常规方式
|
||||||
|
public int climbStairs(int n) {
|
||||||
|
int[] dp = new int[n + 1];
|
||||||
|
dp[0] = 1;
|
||||||
|
dp[1] = 1;
|
||||||
|
for (int i = 2; i <= n; i++) {
|
||||||
|
dp[i] = dp[i - 1] + dp[i - 2];
|
||||||
|
}
|
||||||
|
return dp[n];
|
||||||
|
}
|
||||||
|
// 用变量记录代替数组
|
||||||
|
public int climbStairs(int n) {
|
||||||
|
int a = 0, b = 1, c = 0; // 默认需要1次
|
||||||
|
for (int i = 1; i <= n; i++) {
|
||||||
|
c = a + b; // f(i - 1) + f(n - 2)
|
||||||
|
a = b; // 记录上一轮的值
|
||||||
|
b = c; // 向后步进1个数
|
||||||
|
}
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
|
||||||
|
@ -304,6 +304,35 @@ class Solution {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 简洁实现·递归解法
|
||||||
|
class Solution {
|
||||||
|
public boolean isValidBST(TreeNode root) {
|
||||||
|
return validBST(Long.MIN_VALUE, Long.MAX_VALUE, root);
|
||||||
|
}
|
||||||
|
boolean validBST(long lower, long upper, TreeNode root) {
|
||||||
|
if (root == null) return true;
|
||||||
|
if (root.val <= lower || root.val >= upper) return false;
|
||||||
|
return validBST(lower, root.val, root.left) && validBST(root.val, upper, root.right);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 简洁实现·中序遍历
|
||||||
|
class Solution {
|
||||||
|
private long prev = Long.MIN_VALUE;
|
||||||
|
public boolean isValidBST(TreeNode root) {
|
||||||
|
if (root == null) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (!isValidBST(root.left)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (root.val <= prev) { // 不满足二叉搜索树条件
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
prev = root.val;
|
||||||
|
return isValidBST(root.right);
|
||||||
|
}
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
@ -332,6 +332,19 @@ class Solution {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// LC112 简洁方法
|
||||||
|
class Solution {
|
||||||
|
public boolean hasPathSum(TreeNode root, int targetSum) {
|
||||||
|
|
||||||
|
if (root == null) return false; // 为空退出
|
||||||
|
|
||||||
|
// 叶子节点判断是否符合
|
||||||
|
if (root.left == null && root.right == null) return root.val == targetSum;
|
||||||
|
|
||||||
|
// 求两侧分支的路径和
|
||||||
|
return hasPathSum(root.left, targetSum - root.val) || hasPathSum(root.right, targetSum - root.val);
|
||||||
|
}
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
@ -198,7 +198,22 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
Java:
|
Java:
|
||||||
|
```java
|
||||||
|
class Solution {
|
||||||
|
public int maxProfit(int[] prices) {
|
||||||
|
int minprice = Integer.MAX_VALUE;
|
||||||
|
int maxprofit = 0;
|
||||||
|
for (int i = 0; i < prices.length; i++) {
|
||||||
|
if (prices[i] < minprice) {
|
||||||
|
minprice = prices[i];
|
||||||
|
} else if (prices[i] - minprice > maxprofit) {
|
||||||
|
maxprofit = prices[i] - minprice;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return maxprofit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
|
||||||
|
@ -133,7 +133,34 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
Java:
|
Java:
|
||||||
|
```java
|
||||||
|
// 动态规划
|
||||||
|
class Solution
|
||||||
|
public int maxProfit(int[] prices) {
|
||||||
|
int n = prices.length;
|
||||||
|
int[][] dp = new int[n][2];
|
||||||
|
dp[0][0] = 0;
|
||||||
|
dp[0][1] = -prices[0];
|
||||||
|
for (int i = 1; i < n; ++i) {
|
||||||
|
dp[i][0] = Math.max(dp[i - 1][0], dp[i - 1][1] + prices[i]);
|
||||||
|
dp[i][1] = Math.max(dp[i - 1][1], dp[i - 1][0] - prices[i]);
|
||||||
|
}
|
||||||
|
return dp[n - 1][0];
|
||||||
|
}
|
||||||
|
|
||||||
|
public int maxProfit(int[] prices) {
|
||||||
|
int n = prices.length;
|
||||||
|
int dp0 = 0, dp1 = -prices[0];
|
||||||
|
for (int i = 1; i < n; ++i) {
|
||||||
|
int newDp0 = Math.max(dp0, dp1 + prices[i]);
|
||||||
|
int newDp1 = Math.max(dp1, dp0 - prices[i]);
|
||||||
|
dp0 = newDp0;
|
||||||
|
dp1 = newDp1;
|
||||||
|
}
|
||||||
|
return dp0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
|
||||||
|
@ -111,7 +111,24 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
Java:
|
Java:
|
||||||
|
```Java
|
||||||
|
// 动态规划
|
||||||
|
class Solution {
|
||||||
|
public int rob(int[] nums) {
|
||||||
|
if (nums == null || nums.length == 0) return 0;
|
||||||
|
if (nums.length == 1) return nums[0];
|
||||||
|
|
||||||
|
int[] dp = new int[nums.length + 1];
|
||||||
|
dp[0] = nums[0];
|
||||||
|
dp[1] = Math.max(dp[0], nums[1]);
|
||||||
|
for (int i = 2; i < nums.length; i++) {
|
||||||
|
dp[i] = Math.max(dp[i - 1], dp[i - 2] + nums[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return dp[nums.length - 1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
|
||||||
|
@ -98,7 +98,28 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
Java:
|
Java:
|
||||||
|
```Java
|
||||||
|
class Solution {
|
||||||
|
public int rob(int[] nums) {
|
||||||
|
if (nums == null || nums.length == 0)
|
||||||
|
return 0;
|
||||||
|
int len = nums.length;
|
||||||
|
if (len == 1)
|
||||||
|
return nums[0];
|
||||||
|
return Math.max(robAction(nums, 0, len - 1), robAction(nums, 1, len));
|
||||||
|
}
|
||||||
|
|
||||||
|
int robAction(int[] nums, int start, int end) {
|
||||||
|
int x = 0, y = 0, z = 0;
|
||||||
|
for (int i = start; i < end; i++) {
|
||||||
|
y = z;
|
||||||
|
z = Math.max(y, x + nums[i]);
|
||||||
|
x = y;
|
||||||
|
}
|
||||||
|
return z;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
|
||||||
|
@ -110,7 +110,26 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
Java:
|
Java:
|
||||||
|
```Java
|
||||||
|
class Solution {
|
||||||
|
public int lengthOfLIS(int[] nums) {
|
||||||
|
int[] dp = new int[nums.length];
|
||||||
|
Arrays.fill(dp, 1);
|
||||||
|
for (int i = 0; i < dp.length; i++) {
|
||||||
|
for (int j = 0; j < i; j++) {
|
||||||
|
if (nums[i] > nums[j]) {
|
||||||
|
dp[i] = Math.max(dp[i], dp[j] + 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
int res = 0;
|
||||||
|
for (int i = 0; i < dp.length; i++) {
|
||||||
|
res = Math.max(res, dp[i]);
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
|
||||||
|
@ -218,7 +218,72 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
Java:
|
Java:
|
||||||
|
```Java
|
||||||
|
class Solution {
|
||||||
|
// 1.递归去偷,超时
|
||||||
|
public int rob(TreeNode root) {
|
||||||
|
if (root == null)
|
||||||
|
return 0;
|
||||||
|
int money = root.val;
|
||||||
|
if (root.left != null) {
|
||||||
|
money += rob(root.left.left) + rob(root.left.right);
|
||||||
|
}
|
||||||
|
if (root.right != null) {
|
||||||
|
money += rob(root.right.left) + rob(root.right.right);
|
||||||
|
}
|
||||||
|
return Math.max(money, rob(root.left) + rob(root.right));
|
||||||
|
}
|
||||||
|
|
||||||
|
// 2.递归去偷,记录状态
|
||||||
|
// 执行用时:3 ms , 在所有 Java 提交中击败了 56.24% 的用户
|
||||||
|
public int rob1(TreeNode root) {
|
||||||
|
Map<TreeNode, Integer> memo = new HashMap<>();
|
||||||
|
return robAction(root, memo);
|
||||||
|
}
|
||||||
|
|
||||||
|
int robAction(TreeNode root, Map<TreeNode, Integer> memo) {
|
||||||
|
if (root == null)
|
||||||
|
return 0;
|
||||||
|
if (memo.containsKey(root))
|
||||||
|
return memo.get(root);
|
||||||
|
int money = root.val;
|
||||||
|
if (root.left != null) {
|
||||||
|
money += robAction(root.left.left, memo) + robAction(root.left.right, memo);
|
||||||
|
}
|
||||||
|
if (root.right != null) {
|
||||||
|
money += robAction(root.right.left, memo) + robAction(root.right.right, memo);
|
||||||
|
}
|
||||||
|
int res = Math.max(money, robAction(root.left, memo) + robAction(root.right, memo));
|
||||||
|
memo.put(root, res);
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3.状态标记递归
|
||||||
|
// 执行用时:0 ms , 在所有 Java 提交中击败了 100% 的用户
|
||||||
|
// 不偷:Max(左孩子不偷,左孩子偷) + Max(又孩子不偷,右孩子偷)
|
||||||
|
// root[0] = Math.max(rob(root.left)[0], rob(root.left)[1]) +
|
||||||
|
// Math.max(rob(root.right)[0], rob(root.right)[1])
|
||||||
|
// 偷:左孩子不偷+ 右孩子不偷 + 当前节点偷
|
||||||
|
// root[1] = rob(root.left)[0] + rob(root.right)[0] + root.val;
|
||||||
|
public int rob3(TreeNode root) {
|
||||||
|
int[] res = robAction1(root);
|
||||||
|
return Math.max(res[0], res[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
int[] robAction1(TreeNode root) {
|
||||||
|
int res[] = new int[2];
|
||||||
|
if (root == null)
|
||||||
|
return res;
|
||||||
|
|
||||||
|
int[] left = robAction1(root.left);
|
||||||
|
int[] right = robAction1(root.right);
|
||||||
|
|
||||||
|
res[0] = Math.max(left[0], left[1]) + Math.max(right[0], right[1]);
|
||||||
|
res[1] = root.val + left[0] + right[0];
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
|
||||||
|
@ -171,7 +171,20 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
Java:
|
Java:
|
||||||
|
```Java
|
||||||
|
class Solution {
|
||||||
|
public int fib(int n) {
|
||||||
|
if (n < 2) return n;
|
||||||
|
int a = 0, b = 1, c = 0;
|
||||||
|
for (int i = 1; i < n; i++) {
|
||||||
|
c = a + b;
|
||||||
|
a = b;
|
||||||
|
b = c;
|
||||||
|
}
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
|
||||||
|
@ -115,7 +115,59 @@ void traversal(TreeNode* cur, vector<int>& vec) {
|
|||||||
|
|
||||||
|
|
||||||
Java:
|
Java:
|
||||||
|
```Java
|
||||||
|
// 前序遍历·递归·LC144_二叉树的前序遍历
|
||||||
|
class Solution {
|
||||||
|
ArrayList<Integer> preOrderReverse(TreeNode root) {
|
||||||
|
ArrayList<Integer> result = new ArrayList<Integer>();
|
||||||
|
preOrder(root, result);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
void preOrder(TreeNode root, ArrayList<Integer> result) {
|
||||||
|
if (root == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
result.add(root.val); // 注意这一句
|
||||||
|
preOrder(root.left, result);
|
||||||
|
preOrder(root.right, result);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 中序遍历·递归·LC94_二叉树的中序遍历
|
||||||
|
class Solution {
|
||||||
|
public List<Integer> inorderTraversal(TreeNode root) {
|
||||||
|
List<Integer> res = new ArrayList<>();
|
||||||
|
inorder(root, res);
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
void inorder(TreeNode root, List<Integer> list) {
|
||||||
|
if (root == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
inorder(root.left, list);
|
||||||
|
list.add(root.val); // 注意这一句
|
||||||
|
inorder(root.right, list);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 后序遍历·递归·LC145_二叉树的后序遍历
|
||||||
|
class Solution {
|
||||||
|
public List<Integer> postorderTraversal(TreeNode root) {
|
||||||
|
List<Integer> res = new ArrayList<>();
|
||||||
|
postorder(root, res);
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
void postorder(TreeNode root, List<Integer> list) {
|
||||||
|
if (root == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
postorder(root.left, list);
|
||||||
|
postorder(root.right, list);
|
||||||
|
list.add(root.val); // 注意这一句
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user