码迷,mamicode.com
首页 > 其他好文 > 详细

Merge Two Sorted Arrays

时间:2017-05-31 10:23:35      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:solution   ret   new   write   array   color   int   pre   return   

class Solution {
    /**
     * @param A and B: sorted integer array A and B.
     * @return: A new sorted integer array
     */
    public int[] mergeSortedArray(int[] A, int[] B) {
        // Write your code here
        int n = A.length + B.length;
        int[] rst = new int[n];
        int a = 0;
        int b = 0;
        int i = 0;
        while (a < A.length && b < B.length) {
            if (A[a] < B[b]) {
                rst[i++] = A[a++];
            } else {
                rst[i++] = B[b++];
            }
        }
        while (a < A.length) {
            rst[i++] = A[a++];
        }
        while (b < B.length) {
            rst[i++] = B[b++];
        }
        return rst;
    }
}

 

Merge Two Sorted Arrays

标签:solution   ret   new   write   array   color   int   pre   return   

原文地址:http://www.cnblogs.com/codingEskimo/p/6922565.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!