Updated Program to aid with testing on Doubly Linked List

This commit is contained in:
Luke Else 2022-05-04 21:01:09 +01:00
parent e66473bb25
commit a37a81a2bf

View File

@ -1,4 +1,5 @@
using System;
using C_.Datastructures.DoublyLinkedList;
using C_.Datastructures.BinaryTree;
using C_.Datastructures.Heap;
@ -38,6 +39,8 @@ Console.WriteLine("Hello, World!");
// list.Append(6);
// list.Insert(6, 1);
// list.Delete(0);
// Console.Write($"{list[0]} ");
// Console.Write($"{list[1]} ");
// Console.Write($"{list[2]} ");