예제 #1
0
파일: Sort.cs 프로젝트: dancrowley303/Algo
        public void SelectionSort()
        {
            var chars = new char[] { 'd', 'e', 'f', 'r', 'o', 'b' };
            var sort  = new SelectionSort <char>();

            sort.Go(chars);
            Assert.IsTrue(sort.IsSorted(chars));
        }