Given a combination of k
in a specified sequence is computed.
getNextSet(n,k,set)
Number of elements to choose from (integer)
Size of chosen set (integer)
Previous set in list (numeric vector)
List with two elements:
Next set in list (numeric vector)
Logical indicating whether the end of the specified sequence is reached.
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
from package combinat is an alternative.
This function is used in skeleton
.
# NOT RUN {
## 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 <- 5
k <- 3
currentSet <- 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
# }
Run the code above in your browser using DataLab