有序集合的交集


/**  两个有序集合的交集
 * @author HDF
 *
 */
public class Test {

    public static void main(String args[]){
        int[] b = {4, 6, 7, 7, 7, 7, 8, 8, 9, 10, 100, 130, 130, 140, 150};
        int[] a = {2, 3, 4, 4, 4, 4, 7, 8, 8, 8, 8, 9, 100, 130, 150, 160};
        int[] c = intersect(a, b);
        System.out.println(Arrays.toString(c));
    }

    public static int[] intersect(int[] a, int[] b) {
    	//直接排除交集为空的情况
        if(a[0] > b[b.length - 1] || b[0] > a[a.length - 1]) {
            return new int[0];
        }
        int[] intersection = new int[Math.max(a.length, b.length)];
        int offset = 0;
        for(int i = 0, s = i; i < a.length && s < b.length; i++) {
        	System.out.println(i);
            while(a[i] > b[s]) {
                s++;
            }
            if(a[i] == b[s]) {
                intersection[offset++] = b[s++];
            }
            while(i < (a.length - 1) && a[i] == a[i + 1]) {
                i++;
            }
        }
        if(intersection.length == offset) {
            return intersection;
        }
        int[] duplicate = new int[offset];
        System.arraycopy(intersection, 0, duplicate, 0, offset);
        return duplicate;
    }
}

 

转载于:https://my.oschina.net/dylan2hdf/blog/1305755

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值