Example #1
0
        //Used to test doubly Insertion Sort methods
        static public worddata[] insertionSortTest()
        {
            worddata[] testList = CreateTestData();
            worddata[] newTestList;

            newTestList = new insertionsort(testList).getWorddata();

            return(newTestList);
        }
Example #2
0
        //Used to test doubly Insertion Sort methods
        static public List <long> insertionSortTest()
        {
            List <long> testList = new List <long>()
            {
                4
            };
            List <long> newTestList;

            newTestList = new insertionsort(testList).getList();

            return(newTestList);
        }