From a37a81a2bf7b2639736379cb14511aead5db8485 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Wed, 4 May 2022 21:01:09 +0100 Subject: [PATCH] Updated Program to aid with testing on Doubly Linked List --- C#/Program.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/C#/Program.cs b/C#/Program.cs index 1fe9171..fbb5bcd 100644 --- a/C#/Program.cs +++ b/C#/Program.cs @@ -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]} ");