您的位置 首页 JAVA(2017)

LeetCode – 88. Merge Sorted Array

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.

public class Solution {
    public void merge(int A[], int m, int B[], int n) {
        int a = m -1;
        int b = n -1;
        int l = m+n -1;
        while(a>=0 && b >=0){
            if(A[a] > B[b]){
                A[l] = A[a];
                a--;
            }
            else{
                A[l] = B[b];
                b--;
            }
            l--;
        }
        while(b>=0){
            A[l] = B[b];
            l--;
            b--;
        }
    }
}
看完了?留个评分呗?
[0人评了分,平均: 0/5]

本站原创文章皆遵循“署名-非商业性使用-相同方式共享 3.0 (CC BY-NC-SA 3.0)”。转载请保留以下标注:

原文来源:《LeetCode – 88. Merge Sorted Array》

发表评论

邮箱地址不会被公开。

返回顶部