Merge Sorted Array(easy)

题目

  Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.

 Note:
 You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additional elements   from nums2. The number of elements initialized in nums1 and nums2 are m and n respectively.

题意

  两个有序数组,合并成一个有序数组,假设第一个数组空间足够容纳两个数组。

分析

   考虑到num1数组很大,可以直接在num1数组上进行合并,但是要讲究效率。
   如果单纯从前往后合并,那么效率会非常低,因为a数组后面的数字需要不停的移动。

   换一种思路,我们采用从后往前合并,首先计算出总长度,设置一个指针从num1数组最后往前移动。

题目

public class Solution {
    public void merge(int A[], int m, int B[], int n) {
        // Start typing your Java solution below
        // DO NOT write main() function
        //input check 
        
        int i=m-1;
        int j=n-1;
        int k=m+n-1;
        
        while(i>=0 && j>=0) {
            A[k--] = A[i] > B[j] ? A[i--] : B[j--]; 
        }
        
        while(j>=0) {
            A[k--] = B[j--];
        }
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值