-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathProgram.cs
59 lines (49 loc) · 1.17 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
using System.Collections.Generic;
namespace StrategyPattern
{
interface ISortStrategy
{
List<int> Sort(List<int> dataset);
}
class BubbleSortStrategy : ISortStrategy
{
public List<int> Sort(List<int> dataset)
{
Console.WriteLine("Sorting using Bubble Sort !");
return dataset;
}
}
class QuickSortStrategy : ISortStrategy
{
public List<int> Sort(List<int> dataset)
{
Console.WriteLine("Sorting using Quick Sort !");
return dataset;
}
}
class Sorter
{
private readonly ISortStrategy mSorter;
public Sorter(ISortStrategy sorter)
{
mSorter = sorter;
}
public List<int> Sort(List<int> unSortedList)
{
return mSorter.Sort(unSortedList);
}
}
class Program
{
static void Main(string[] args)
{
var unSortedList = new List<int> { 1, 10, 2, 16, 19 };
var sorter = new Sorter(new QuickSortStrategy());
sorter.Sort(unSortedList); // // Output : Sorting using Bubble Sort !
sorter = new Sorter(new QuickSortStrategy());
sorter.Sort(unSortedList); // // Output : Sorting using Quick Sort !
Console.ReadLine();
}
}
}