Leetcode刷题

206反转链表

采用双指针的思想,pre指针刚开始指向null,cur指针指向头,将cur指针指向pre,但在这之前需要将cur的下一个保存起来,因为cur指向pre的时候和后面的值断开了。

class Solution {
    public ListNode reverseList(ListNode head) {
       //反转链表
        ListNode  pre=null;
        ListNode cur=head;
        while (cur!=null){
            ListNode next=cur.next; //指向下一个
            cur.next=pre;
            pre=cur;
            cur=next;
        }
        return  pre;
    }
}

104二叉树的最大深度

class Solution {
    public int maxDepth(TreeNode root) {
      //二叉树的最大深入
        // 给的是层序遍历
        //dfs遍历结果了
        if(root==null){
            return 0;
        }
        int left =maxDepth(root.left)+1;
        int right=maxDepth(root.right)+1;
        return Math.max(left,right);
    }

}

1两数之和

原来是on方的时间复杂度,通过hashmap将时间复杂度变为on;

import java.util.HashMap;

//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
    public int[] twoSum(int[] nums, int target) {
      Map<Integer,Integer> mp=new HashMap<>();
      int a[]=new int[2];
      for(int i=0;i<nums.length;i++){
          //把值给访进去
          if( mp.containsKey(target-nums[i])){
              a[0]=mp.get(target-nums[i]);
              a[1]=i;
              return  a;
          }
          mp.put(nums[i],i);
      }
      return  a;
    }
}

560和为k的子数组

第一题的变式;

public class Solution {
    public int subarraySum(int[] nums, int k) {
        int count = 0, pre = 0;
        HashMap < Integer, Integer > mp = new HashMap < > ();
        mp.put(0, 1); //长度为0,直接为1个
        for (int i = 0; i < nums.length; i++) {
            pre += nums[i]; //求前缀和
            if (mp.containsKey(pre - k)) {
                count += mp.get(pre - k);
            }
            mp.put(pre, mp.getOrDefault(pre, 0) + 1);
        }
        return count;
    }
}
### LeetCode编程练习推荐 #### 基本计算器II 此目要求实现一个基本的计算器来计算简单的表达式字符串[^1]。表达式字符串仅包含非负整数,`+`, `-`, `*`, `/` 运算符以及开括号 `(` 和闭括号 `)`。 ```python def calculate(s: str) -> int: def helper(stack, i): num = 0 sign = '+' while i < len(s): c = s[i] if c.isdigit(): num = num * 10 + int(c) elif c in "+-*/": if sign == '+': stack.append(num) elif sign == '-': stack.append(-1] *= num elif sign == '/': stack[-1] = int(stack[-1] / float(num)) num = 0 sign = c elif c == '(': num, i = helper([], i + 1) elif c == ')': break i += 1 if sign == '+': stack.append(num) elif sign == '-': stack.append(-num) elif sign == '*': stack[-1] *= num elif sign == '/': stack[-1] / float(num)) return sum(stack), i return helper([], 0)[0] ``` #### 判断回文数 提供两种方法判断一个整数是否为回文数。一种是通过反转整个数字并比较原数字与反转后的结果;另一种则是利用双指针法逐位对比字符[^2]。 ```python class Solution: # 方法一:字符串切片 def isPalindrome(self, x: int) -> bool: x_str = str(x) if x_str == x_str[::-1]: return True return False # 方法二: 双指针 def isPalindrome_v2(self, x: int) -> bool: x_str = str(x) left, right = 0, len(x_str) - 1 while left < right: if x_str[left] != x_str[right]: return False left += 1 right -= 1 return True ``` #### 两数之和 在一个整数数组中找到两个不同的索引位置使得这两个位置对应的数值相加等于指定的目标值,并返回这两个索引的位置[^3]。 ```python from typing import List class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: hashmap = {} for index, value in enumerate(nums): diff = target - value if diff in hashmap: return [hashmap[diff], index] hashmap[value] = index ```
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

全栈阿星

您的支持是我最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值