Exemple #1
0
        public static void Main()
        {
            MyLinkedList<int> testLList = new MyLinkedList<int>();
            testLList.InsertElementAtBack(3);
            testLList.InsertElementAtFront(2);
            testLList.InsertElementAtIndex(10, 1);
            testLList.PrintLList();

            testLList.RemoveElementAtIndex(1);
            testLList.PrintLList();
        }