コード例 #1
0
 public int[][] BubbleSortDelegate_ByMinElemntsRows_Succed(Func <int[][]> func)
 {
     int[][] array = func();
     BubbleSortDelegate.SortRows(array, KeysForSort.GetMinRowsElements(array), new Comparison <int>((a, b) => a.CompareTo(b)));
     return(array);
 }
コード例 #2
0
 public int[][] BubbleSortDelegate_ByMinElemntsRowsDesc_CorrectValues(Func <int[][]> func)
 {
     int[][] array = func();
     BubbleSortDelegate.SortRows(array, KeysForSort.GetMinRowsElements(array), new Comparison <int>((a, b) => b.CompareTo(a)));
     return(array);
 }
コード例 #3
0
ファイル: BubbleSortTests.cs プロジェクト: denisoda/Epam-.NET
 public int[][] Test_BubbleSortByMinElemntsRowsDesc_CorrectValues(Func <int[][]> func)
 {
     int[][] array = func();
     BubbleSort.SortRows(array, KeysForSort.GetMinRowsElements(array), new DescendingOrder());
     return(array);
 }