AlgorithmsTest.SortTest.TestSelectionSort C# (CSharp) 메소드

TestSelectionSort() 개인적인 메소드

private TestSelectionSort ( ) : void
리턴 void
        public void TestSelectionSort() {
            var a = new int[10];
            for (int i = 0; i < a.Length; i++) {
                a[i] = StdRandom.Uniform(10);
            }
            StdOut.WriteLine(a);
            Selection<int>.Sort(a);
            StdOut.WriteLine(a);
        }