没有迭代器:
public static ArrayList merge(ArrayList a, ArrayList b) { int c1 = 0, c2 = 0; ArrayList<Integer> res = new ArrayList<Integer>(); while(c1 < a.size() || c2 < b.size()) { if(c1 < a.size()) res.add((Integer) a.get(c1++)); if(c2 < b.size()) res.add((Integer) b.get(c2++)); } return res;}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)