如下所示:
package com.test.sort;public class testMerge {public static void main(String[] args) {int[] a = { 1, 3, 5 };int[] b = { 2, 3, 4, 7 };merge m = new merge();m.method(a, b);}}class merge {public void method(int[] a, int[] b) {int l = a.length + b.length;int[] temp = new int[l];int i = 0, j = 0, h = 0;// 这里必须用while,不能用ifwhile (i < a.length || j < b.length) {if (i == a.length && j < b.length) {temp[h++] = b[j++];} else if (i < a.length && j == b.length) {temp[h++] = a[i++];} else if (a[i] <= b[j]) {temp[h++] = a[i++];} else if (a[i] > b[j]) {temp[h++] = b[j++];}}for (int m : temp) {System.out.print(m + " ");}}}
以上这篇java实现把两个有序数组合并到一个数组的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持VeVb武林网。
新闻热点
疑难解答
图片精选