当前位置: 首页 > article >正文

力扣一百题——双指针题解

移动零

题目

283. 移动零 - 力扣(LeetCode)

思路

类似快速排序的思想,以0为中间点,把不等于0的放在左边,把为0的放在右边

代码

public void moveZeroes(int[] nums) {
        int j = 0;
        for (int i = 0; i < nums.length; i++) {
            if (nums[i] != 0) {
                int t = nums[i];
                nums[i] = nums[j];
                nums[j++] = t;
            }
        }
    }

盛最多的雨水

题目

11. 盛最多水的容器 - 力扣(LeetCode)

思路

用双指针代表容器的左右边界,将对应的数字较小的那个指针往另一个指针的方向移动一个位置,不断移动,找出最大的面积

代码

public int maxArea(int[] height) {
        int l = 0, r = height.length - 1;
        int max = 0;
        while (l < r) {
            int area = Math.min(height[l], height[r]) * (r - l);
            max = Math.max(max, area);
            if (height[l] > height[r]) {
                r--;
            } else {
                l++;
            }
        }
        return max;
    }

三数之和

题目

15. 三数之和 - 力扣(LeetCode)

思路

固定一个数,然后在剩余部分中使用双指针查找两个数,使得三者之和为零

代码

public List<List<Integer>> threeSum(int[] nums) {
        int n = nums.length;
        Arrays.sort(nums);
        List<List<Integer>> integers = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            if (i != 0 && nums[i] == nums[i - 1]) {
                continue;
            }
            int t = -nums[i];
            int third = n - 1;
            for (int j = i + 1; j < n; j++) {
                if (j > i && nums[j] == nums[j - 1]) {
                    continue;
                }
                while (j > third && nums[j] + nums[third] > t) {
                    third--;
                }
                if (third == j) {
                    break;
                }
                if (nums[j] + nums[third] == t) {
                    ArrayList<Integer> list = new ArrayList<>();
                    list.add(nums[i]);
                    list.add(nums[j]);
                    list.add(nums[third]);
                    integers.add(list);
                }
            }
        }
        return integers;
    }

接雨水

题目

42. 接雨水 - 力扣(LeetCode)

思路

用maxL和maxR代表当前下标i左边的最大值和右边的最大值,然后计算总的面积值

代码

public int trap(int[] height) {
        int n = height.length,sum=0;
        if(n==0)
            return 0;
        int []maxL = new int[n];
        int []maxR = new int[n];
        for(int i=0;i<n;i++){
            if(i==0){
                maxL[i]=height[i];
                continue;
            }
            maxL[i] = Math.max(height[i],maxL[i-1]);
        }
        for(int i=n-1;i>-1;i--){
            if(i==n-1){
                maxR[i] = height[i];
                continue;
            }
            maxR[i] = Math.max(maxR[i+1],height[i]);
        }
        for(int i=0;i<n;i++){
            sum=sum+Math.min(maxR[i],maxL[i])-height[i];
        }
        return sum;
    }


http://www.kler.cn/a/291544.html

相关文章:

  • 统信UOS开发环境支持Golang
  • CC工具箱使用指南:【CAD导出界址点Excel】
  • React Native 全栈开发实战班 - 打包发布之热更新
  • Vue3中实现插槽使用
  • MSTP知识点
  • IC 脚本之VIM 记录
  • 常规流布局(补充)——WEB开发系列30
  • AIStarter:AI界的全能启动器【绘画、对话、写作、视频、换脸...】
  • echarts图表标题,层级,view表格,机型适配
  • 【机器人工具箱Robotics Toolbox开发笔记(四)】 机器人位姿变换之位姿变换函数
  • F - Pond Skater 矩阵 一个方向走k步。。最短路
  • 编译LineageOS模拟器镜像,导出到AndroidStudio
  • nmap-S伪造源地址进行网络测试
  • 虚幻引擎VR游戏开发03| 键位映射
  • 如何快速采集淘宝商品数据?
  • 深度学习——基于MTCNN算法实现人脸侦测
  • 解决浏览器自动将http网址转https
  • MySQL主从复制配置指南:实现数据同步与高可用性
  • nuxt3模拟手机验证码
  • Vue初学-简易计算器
  • 构建高效医护人员排班系统:Spring Boot框架的优势
  • 多维动态规划-面试高频!-最长公共子序列和最长公共子串、回文串-c++实现和详解
  • K8s的Pv和Pvc就是为了pod数据持久化
  • AMV格式转换,试试这五种转换方式
  • Mysql从0到1
  • Arduino IDE安装