算法 - 两个有序数组合并成一个有序数组

Posted 奔跑的蜗牛-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法 - 两个有序数组合并成一个有序数组相关的知识,希望对你有一定的参考价值。

    //两个有序数组的合并函数
    public static int[] MergeList(int a[],int b[])
    {
        int result[];  
        if(checkSort(a) && checkSort(b))  //检查传入的数组是否是有序的
        {
            result = new int[a.length+b.length];
            
            int i=0,j=0,k=0;   //i:用于标示a数组    j:用来标示b数组  k:用来标示传入的数组

            while(i<a.length && j<b.length)
                if(a[i] <= b[j]) {
                    result[k++] = a[i++];
                }else{
                    result[k++] = b[j++];
                }

            /* 后面连个while循环是用来保证两个数组比较完之后剩下的一个数组里的元素能顺利传入 */
            while(i < a.length) 
                result[k++] = a[i++];
            while(j < b.length)
                result[k++] = b[j++];
            
            return result;
        }
        else 
        {
            System.out.print("非有序数组,不可排序!");
            return null;
        }
    }
    
    //检查数组是否是顺序存储的
    public static boolean checkSort(int a[])
    {
for(int j=i+1; j<a.length; j++)
                if(a[j-1] > a[j])
                    return false;
        }
        return true;        
    }
    
    // 打印函数
    public static void print(int b[])
    {
         for(int i=0; i<b.length ; i++)
         {
             System.out.print(b[i] + (i%10 ==9 ? "\n":"\t"));
         }
    }
    
    public static void main(String args[])
    {
        int a[]={1,2,2,3,5,6,7,7};
        int b[]={1,2,4,5,8,8,9,10,11,12,12,13,14};
        int c[]= MergeList(a,b);
        if(c!=null)
        print(c);
        else
            System.out.println("");
    }
}

 

以上是关于算法 - 两个有序数组合并成一个有序数组的主要内容,如果未能解决你的问题,请参考以下文章

有序数组合并

如何将两个有序数组合并为一个有序数组,用函数做,一个循环搞定?

归并排序

c++两个数组合并成一个新数组

算法作业!!求两个不等长有序数组的中位数!

合并排序