LeetCode 88.合并两个有序数组

一、题目

二、解题

注:本文均是Java代码

1、合并后排序

class Solution {
    public void merge(int[] nums1, int m, int[] nums2, int n) {
        // 时间复杂度O(m+n)*log(m+n)
        // 空间复杂度O(1)
        System.arraycopy(nums2,0,nums1,m,n);
        Arrays.sort(nums1);
    }
}

2、双指针(从前往后)

class Solution {
    public void merge(int[] nums1, int m, int[] nums2, int n) {
        // 时间复杂度O(m+n)
        // 空间复杂度O(m)
        int[] nums1_copy = new int[m];
        System.arraycopy(nums1,0,nums1_copy,0,m);
        int p1 = 0 , p2 = 0, p = 0;
        while (p1 < m && p2 < n) {
            nums1[p++] = (nums1_copy[p1] < nums2[p2] ? nums1_copy[p1++] : nums2[p2++]);
        }
        if (p1 < m) System.arraycopy(nums1_copy,p1,nums1,p1+p2,m+n-p1-p2);
        if (p2 < n) System.arraycopy(nums2,p2,nums1,p1+p2,m+n-p1-p2);
    }
}

3、双指针(从后往前)

class Solution {
    public void merge(int[] nums1, int m, int[] nums2, int n) {
        // 时间复杂度O(m+n)
        // 空间复杂度O(1)
        int p = m + n - 1;
        int p1 = m - 1;
        int p2 = n - 1;
        while (p1 >= 0 && p2 >= 0) {
            nums1[p--] = (nums1[p1] < nums2[p2] ? nums2[p2--] : nums1[p1--]);
        }
        while (p2 >= 0) nums1[p--] = nums2[p2--];
    }
}

相关推荐

  1. LeetCode 88. 合并有序数组

    2024-04-09 15:50:01       58 阅读
  2. leetcode88--合并有序数组

    2024-04-09 15:50:01       44 阅读
  3. Leetcode|#88.合并有序数组

    2024-04-09 15:50:01       38 阅读
  4. 88. 合并有序数组

    2024-04-09 15:50:01       37 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-04-09 15:50:01       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-04-09 15:50:01       100 阅读
  3. 在Django里面运行非项目文件

    2024-04-09 15:50:01       82 阅读
  4. Python语言-面向对象

    2024-04-09 15:50:01       91 阅读

热门阅读

  1. 掌握ChatGPT:提升学术论文写作技巧

    2024-04-09 15:50:01       33 阅读
  2. 【系统架构师】-23种设计模式

    2024-04-09 15:50:01       31 阅读
  3. ubuntu 安装多版本 python 并使用

    2024-04-09 15:50:01       33 阅读
  4. Android Hal service compatibility matrix

    2024-04-09 15:50:01       38 阅读
  5. 在react项目中使用redux和reduxjs/toolkit

    2024-04-09 15:50:01       35 阅读
  6. 常见的行为识别算法及视频处理算法

    2024-04-09 15:50:01       33 阅读
  7. 搞懂了XML!

    2024-04-09 15:50:01       35 阅读
  8. 在Linux删除几天前的日志文件

    2024-04-09 15:50:01       34 阅读
  9. Spring与Spring Boot的区别和联系

    2024-04-09 15:50:01       35 阅读
  10. html自定义禁用状态下且已选中的checkbox

    2024-04-09 15:50:01       33 阅读