1、两个有序int数组,合并成一个? 答:用两个下标移动,判断大小,写入到一个新的数组里面 public static int[] add(int[] l1, int[] l2) { if (l1 == null || l1.length == 0) return l2; if (l2 == null || l2.length == 0) return l1; int[] l3 = new int[l1.length + l2.length]; int l1Index = 0; int l2Index ...