Lintcode合并排序数组 II

合并排序数组 II 

合并两个排序的整数数组A和B变成一个新的数组。

 注意事项

你可以假设A具有足够的空间(A数组的大小大于或等于m+n)去添加B中的元素。

样例

给出 A = [1, 2, 3, empty, empty], B = [4, 5]

合并之后 A 将变成 [1,2,3,4,5]

public class Solution {
    /*
     * @param A: sorted integer array A which has m elements, but size of A is m+n
     * @param m: An integer
     * @param B: sorted integer array B which has n elements
     * @param n: An integer
     * @return: nothing
     */
    public void mergeSortedArray(int[] A, int m, int[] B, int n) {
        // write your code here
        int x=m-1;
        int y=n-1;
        int z=A.length-1;
        while(x>=0&&y>=0){
            if(A[x]>B[y]){
                A[z]=A[x];
                x--;
                z--;
            }else{
                A[z]=B[y];
                y--;
                z--;
            }
        }
        if(y<0){
        while(x>=0){
            A[z]=A[x];
            x--;
            z--;
        }}
        else{
        while(y>=0){
            A[z]=B[y];
            y--;
            z--;
        }
        }
    }
}

你可能感兴趣的:(Lintcode)