Example #1
0
 public void ChangeSortAlgorithm(SortAlgorithm sortAlgorithm)
 {
     this.sortAlgorithm = sortAlgorithm;
 }
Example #2
0
 public SortContext()
 {
     this.sortAlgorithm = new QuickSort();
 }