Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,20 @@
|
|||
class SelectionSort<T> where T : IComparable {
|
||||
public T[] Sort(T[] list) {
|
||||
int k;
|
||||
T temp;
|
||||
|
||||
for (int i = 0; i < list.Length; i++) {
|
||||
k = i;
|
||||
for (int j=i + 1; j < list.Length; j++) {
|
||||
if (list[j].CompareTo(list[k]) < 0) {
|
||||
k = j;
|
||||
}
|
||||
}
|
||||
temp = list[i];
|
||||
list[i] = list[k];
|
||||
list[k] = temp;
|
||||
}
|
||||
|
||||
return list;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
String[] str = { "this", "is", "a", "test", "of", "generic", "selection", "sort" };
|
||||
|
||||
SelectionSort<String> mySort = new SelectionSort<string>();
|
||||
|
||||
String[] result = mySort.Sort(str);
|
||||
|
||||
for (int i = 0; i < result.Length; i++) {
|
||||
Console.WriteLine(result[i]);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue