求2个有序数组的交集

来源:互联网 发布:阿里巴巴数据工具 编辑:程序博客网 时间:2024/05/17 02:36

利用合并排序的思想

public void intersect2(int[] a, int[] b) {if (a[0] > b[b.length - 1] || b[0] > a[a.length - 1]) {return;}int i = 0, j = 0;int lastA = Integer.MIN_VALUE, lastB = Integer.MIN_VALUE; // 这个初始默认值可能问题,比如数组第一个值就是最小整数值,待改进while (i < (a.length - 1) && j < (b.length - 1)) {if (a[i] < b[j]) {lastA = a[i];i++;} else if (a[i] > b[j]) {lastB = b[j];j++;} else {if (a[i] != lastA && b[j] != lastB) {//这里为了避免重复的值System.out.print(a[i] + " ");}lastA = a[i];lastB = b[j];i++;j++;}}}


0 0
原创粉丝点击