//Use the Strategy Pattern.
//The Runner class creates an instance of the Context class with a default sort stategy of quick sort applied.
//The sort strategy is then changed to use the merge sort strategy and finally the shell sort strategy is applied.

IStrategy quickSort = new QuickSortStrategy();

Context data = new Context(quickSort);
data.AddItem("Samual");
data.AddItem("Jimmy");
data.AddItem("Sandra");
data.AddItem("Vivek");
data.AddItem("Anna");
data.AddItem("Jason");

data.Sort();
Console.WriteLine("*** Quick Sort applied ***");

IStrategy mergeSort = new MergeSortStrategy();
data.SetSortStrategy(mergeSort);
data.Sort();
Console.WriteLine("*** Merge Sort applied ***");

IStrategy shellSort = new ShellSortStrategy();
data.SetSortStrategy(shellSort);
data.Sort();
Console.WriteLine("*** Shell Sort applied ***");