static void Main(string[] args)
        {
            SortingTestData testData = new SortingTestData();
            testData.InitRandom(10, 10);
            testData.testOutput();

            Console.Read();
        }