文章列表
int[] a = { 1, 3, 5, 7, 9,11 ,12};
int[] b = { 2, 3, 4, 6, 8, 10,33 };
int[] c=new int[a.length+b.length];
int temp=0;
int aindex = 0;
int bindex = 0;
while (aindex < a.length && bindex < b.length) {
if (a[aindex] == ...