usingMaths.com
Demonstrating and showing pupils and students one application of Mathematics.







<< PreviousNext >>

Code for Selection with Repetitions in C#



Possible Selections With Repetition.

Imagine being given the opportunity to pick six (6) exercise books from a book-shop having 10 different brands of exercise books - Ben 10, Chelsea F.C., Superman, Tottenham F.C., Indomitables, Manchester City F.C., Spider Man, Power Rangers, Liverpool F.C. and Bat Man exercise books.
If you happen to be a big Power Rangers fan, nothing stops you from selecting all 6 exercise books to be Power Rangers exercise books.
But you can as well decide to pick only 3 Power Rangers exercise books and make up for the other 3 with any other brands of exercise book.



Code for Repetitive Selection in C#

The algorithm for Selection with Repetition will be a lot similar to that of combination.

  1. Beginning with the first member in the mother set, match it separately with every member - including itself - until the required Selection group-size (r) is reached.
  2. When every possible Selection with this member is exhausted, move to the next member in the mother set and repeat Step I.

This is how our Repetitive Selection code in C# will work.

Create a new class file;
Call it Selection.
Type out the adjoining C# code for Selection with Repetition.










<< PreviousNext >>