/// <summary>
 /// Constructor to perform new sort
 /// </summary>
 /// <param name="length">Length of array (one of 'Sizes')</param>
 /// <param name="ord">Order of array (one of 'Order')</param>
 /// <param name="verfahren">Which algorithm to use (one of 'Verfahren')</param>
 public Sortierer(int length, Order ord, Verfahren verfahren)
 {
     initializeArray(ord, length);
     this.verfahren = verfahren;
 }
示例#2
0
 /// <summary>
 /// Constructor to perform new sort
 /// </summary>
 /// <param name="length">Length of array (one of 'Sizes')</param>
 /// <param name="ord">Order of array (one of 'Order')</param>
 /// <param name="verfahren">Which algorithm to use (one of 'Verfahren')</param>
 public Sortierer(int length, Order ord, Verfahren verfahren)
 {
     initializeArray(ord, length);
     this.verfahren = verfahren;
 }