Click or drag to resize

CombinationItem Property

Get a element of the Combination at the supplied column.

Namespace:  Kaos.Combinatorics
Assembly:  KaosCombinatorics (in KaosCombinatorics.dll) Version: 6.0.0.0
Syntax
C#
public int this[
	int index
] { get; }

Parameters

index
Type: SystemInt32
Zero-based index value.

Return Value

Type: Int32
Sequence value at index.
Exceptions
ExceptionCondition
IndexOutOfRangeExceptionWhen index not in range (0..Picks-1).
Examples
C#
using System;
using System.Linq;
using Kaos.Combinatorics;

namespace ExampleApp
{
    class CnExample05
    {
        static void Main()
        {
            // Create a k-combination:
            var cn = new Combination (choices:10, picks:7, rank:110);
            Console.WriteLine ($"n={cn.Choices}, k={cn.Picks}, rank={cn.Rank}:\n");

            // Access elements using the default enumerator:
            var text = String.Concat (cn.Select (ei => (char) ('A' + ei)));
            Console.WriteLine ($"{text}\n");

            // Access elements using the indexer:
            for (int i = 0; i < cn.Picks; ++i)
                Console.WriteLine ($"Element at {i} is {cn[i]}");
        }

        /* Output:

        n=10, k=7, rank=110:

        BDFGHIJ

        Element at 0 is 1
        Element at 1 is 3
        Element at 2 is 5
        Element at 3 is 6
        Element at 4 is 7
        Element at 5 is 8
        Element at 6 is 9

        */
    }
}
See Also