Exemplo n.º 1
0
        public void Improved1QuickTest()
        {
            int[] xs = { 3, 2, 1, 6, 5, 9, 4 };
            Quick <int> .Improved1Sort(xs);

            Assert.True(Sorting <int> .IsSorted(xs));
        }