static void Main(string[] args)
        {
            /*** uncomment the code below the question number and run to get the desired output  **/
            //Question 1
            PersonLinkedList pList = new PersonLinkedList();
            pList.execute();

            //Question 2
            //ListOperations.operations();

            //Question 3
            //StackAndQueue.executeStackOperations();
            //StackAndQueue.executeQueueOperations();

            //Question 4
            //ListAndDictionary.execute();

            //Question 5
            //Comparers.execute();
            Console.ReadKey();
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            /*** uncomment the code below the question number and run to get the desired output  **/
            //Question 1
            PersonLinkedList pList = new PersonLinkedList();

            pList.execute();

            //Question 2
            //ListOperations.operations();

            //Question 3
            //StackAndQueue.executeStackOperations();
            //StackAndQueue.executeQueueOperations();

            //Question 4
            //ListAndDictionary.execute();

            //Question 5
            //Comparers.execute();
            Console.ReadKey();
        }