use std::cmp;
use crate::set::Set;
use crate::{exponential_offset_ge, SetOperation, Collection};
#[derive(Copy, Clone)]
pub struct Intersection<'a, T: 'a> {
a: &'a [T],
b: &'a [T],
}
impl<'a, T> Intersection<'a, T> {
pub fn new(a: &'a Set<T>, b: &'a Set<T>) -> Self {
Self {
a: a.as_slice(),
b: b.as_slice(),
}
}
}
impl<'a, T: Ord> Intersection<'a, T> {
#[inline]
fn extend_collection<C, U, F>(mut self, output: &mut C, extend: F)
where C: Collection<U>,
F: Fn(&mut C, &'a [T])
{
while !self.a.is_empty() && !self.b.is_empty() {
let a = &self.a[0];
let b = &self.b[0];
if a == b {
let off = self.a.iter().zip(self.b.iter()).take_while(|(a, b)| a == b).count();
extend(output, &self.a[..off]);
self.a = &self.a[off..];
self.b = &self.b[off..];
}
else {
let max = cmp::max(a, b);
self.a = exponential_offset_ge(self.a, max);
self.b = exponential_offset_ge(self.b, max);
}
}
}
}
impl<'a, T: Ord + Clone> SetOperation<T> for Intersection<'a, T> {
fn extend_collection<C>(self, output: &mut C) where C: Collection<T> {
self.extend_collection(output, Collection::extend_from_slice)
}
}
impl<'a, T: Ord> SetOperation<&'a T> for Intersection<'a, T> {
fn extend_collection<C>(self, output: &mut C) where C: Collection<&'a T> {
self.extend_collection(output, Collection::extend)
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::set::{sort_dedup_vec, SetBuf};
#[test]
fn two_slices() {
let a = &[1, 2, 3];
let b = &[2, 3, 4];
let intersection_: SetBuf<i32> = Intersection { a: a, b: b }.into_set_buf();
assert_eq!(&intersection_[..], &[2, 3]);
}
quickcheck! {
fn qc_intersection(a: Vec<i32>, b: Vec<i32>) -> bool {
use std::collections::BTreeSet;
use std::iter::FromIterator;
let mut a = a;
let mut b = b;
sort_dedup_vec(&mut a);
sort_dedup_vec(&mut b);
let x: SetBuf<i32> = Intersection { a: &a, b: &b }.into_set_buf();
let a = BTreeSet::from_iter(a);
let b = BTreeSet::from_iter(b);
let y = a.intersection(&b);
let y: Vec<_> = y.cloned().collect();
x.as_slice() == y.as_slice()
}
}
}
#[cfg(all(feature = "unstable", test))]
mod bench {
extern crate test;
use super::*;
use self::test::Bencher;
use crate::set::SetBuf;
#[bench]
fn two_slices_big(bench: &mut Bencher) {
let a: Vec<_> = (0..100).collect();
let b: Vec<_> = (1..101).collect();
bench.iter(|| {
let intersection_: SetBuf<i32> = Intersection { a: &a, b: &b }.into_set_buf();
test::black_box(|| intersection_);
});
}
#[bench]
fn two_slices_big2(bench: &mut Bencher) {
let a: Vec<_> = (0..100).collect();
let b: Vec<_> = (51..151).collect();
bench.iter(|| {
let intersection_: SetBuf<i32> = Intersection { a: &a, b: &b }.into_set_buf();
test::black_box(|| intersection_);
});
}
#[bench]
fn two_slices_big3(bench: &mut Bencher) {
let a: Vec<_> = (0..100).collect();
let b: Vec<_> = (100..200).collect();
bench.iter(|| {
let intersection_: SetBuf<i32> = Intersection { a: &a, b: &b }.into_set_buf();
test::black_box(|| intersection_);
});
}
}