Iteration through a list of all combinations of choose(n,k)
Iteration through a list of all combinations of choose(n,k)
Given a combination of k elements out of the elements 1,…,n, the next set of size k in a specified sequence is computed.
getNextSet(n,k,set)
Arguments
n: Number of elements to choose from (integer)
k: Size of chosen set (integer)
set: Previous set in list (numeric vector)
Returns
List with two elements: - nextSet: Next set in list (numeric vector)
wasLast: Logical indicating whether the end of the specified sequence is reached.
Details
The initial set is 1:k. Last index varies quickest. Using the dynamic creation of sets reduces the memory demands dramatically for large sets. If complete lists of combination sets have to be produced and memory is no problem, the function combn
## start from first set (1,2) and get the next set of size 2 out of 1:5## notice that res$wasLast is FALSE :str(r <- getNextSet(5,2,c(1,2)))## input is the last set; notice that res$wasLast now is TRUE:str(r2 <- getNextSet(5,2,c(4,5)))## Show all sets of size k out of 1:n :## {if you really want this in practice, use something like combn() !}n <-5k <-3currentSet <-1:k
(res <- rbind(currentSet, deparse.level =0))repeat{ newEl <- getNextSet(n,k,currentSet)if(newEl$wasLast)break## otherwise continue: currentSet <- newEl$nextSet
res <- rbind(res, currentSet, deparse.level =0)}res
stopifnot(choose(n,k)== nrow(res))## must be identical