GosperCombinationCellIter

Struct GosperCombinationCellIter 

Source
pub struct GosperCombinationCellIter<'a, T>
where T: 'a,
{ /* private fields */ }
Expand description

§Deprecated

This iterator family is now deprecated. Consider using LargeCombinationCellIter instead. This is because current implementation need to copy every ref on every iteration which is inefficient. On uncontroll test environment, this iterator take 2.49s to iterate over 30,045,015 combinations. The LargeCombinationCellIter took only 446.39ms.

Create a combination iterator. It use Gosper’s algorithm to pick a combination out of given data. The produced combination provide no lexicographic order.

The returned combination will be a reference into given data. Each combination return from iterator by storing into given Rc<RefCell<&mut [&T]>> along with empty Option.

§Examples

Given slice of [1, 2, 3, 4, 5]. It will produce following combinations: [1, 2, 3], [1, 2, 4], [1, 3, 4], [2, 3, 4], [1, 2, 5], [1, 3, 5], [2, 3, 5], [1, 4, 5], [2, 4, 5], [3, 4, 5] Here’s an example of code printing above combination.

   use permutator::{GosperCombinationCellIter};
   use std::cell::RefCell;
   use std::rc::Rc;
   use std::time::{Instant};
   let data = &[1, 2, 3, 4, 5];
   let mut result : &mut[&i32] = &mut [&data[0]; 3];
   let shared = Rc::new(RefCell::new(result));
   let mut gosper = GosperCombinationCellIter::new(&[1, 2, 3, 4, 5], 3, Rc::clone(&shared));
   let mut counter = 0;
   let timer = Instant::now();

   for _ in gosper {
       println!("{}:{:?}", counter, shared);
       counter += 1;
   }

   println!("Total {} combinations in {:?}", counter, timer.elapsed());

§Limitation

Gosper algorithm need to know the MSB (most significant bit). The current largest known MSB data type is u128. This make the implementation support up to 128 elements slice.

§See

Implementations§

Source§

impl<'a, T> GosperCombinationCellIter<'a, T>

Source

pub fn new( data: &'a [T], r: usize, result: Rc<RefCell<&'a mut [&'a T]>>, ) -> GosperCombinationCellIter<'a, T>

Create new combination generator using Gosper’s algorithm. r shall be smaller than data.len().

Note: It perform no check on given parameter. If r is larger than length of data then iterate over it will not occur. The iteration will be end upon enter.

Source

pub fn len(&self) -> usize

Total number of combinations this iterate can return. It will equals to n!/((n-r)!*r!)

Trait Implementations§

Source§

impl<'a, T> IntoIterator for GosperCombinationCellIter<'a, T>

Source§

type Item = ()

The type of the elements being iterated over.
Source§

type IntoIter = CombinationCellIter<'a, T>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> CombinationCellIter<'a, T>

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<'a, T> Freeze for GosperCombinationCellIter<'a, T>

§

impl<'a, T> !RefUnwindSafe for GosperCombinationCellIter<'a, T>

§

impl<'a, T> !Send for GosperCombinationCellIter<'a, T>

§

impl<'a, T> !Sync for GosperCombinationCellIter<'a, T>

§

impl<'a, T> Unpin for GosperCombinationCellIter<'a, T>

§

impl<'a, T> !UnwindSafe for GosperCombinationCellIter<'a, T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.