Updated program.cs for debugging
This commit is contained in:
parent
e6557a1d90
commit
7bb55b8845
@ -30,9 +30,14 @@ list.Append(4);
|
|||||||
list.Append(5);
|
list.Append(5);
|
||||||
list.Append(6);
|
list.Append(6);
|
||||||
|
|
||||||
list.Delete(5);
|
Console.Write($"{list[0]} ");
|
||||||
list.Delete(3);
|
Console.Write($"{list[1]} ");
|
||||||
list.Delete(0);
|
Console.Write($"{list[2]} ");
|
||||||
|
Console.Write($"{list[3]} ");
|
||||||
|
Console.Write($"{list[4]} ");
|
||||||
|
Console.Write($"{list[5]} \n");
|
||||||
|
Console.Write($"{list[6]} ");
|
||||||
|
|
||||||
|
|
||||||
//DoublyLinkedList<int> list2 = new DoublyLinkedList<int>();
|
//DoublyLinkedList<int> list2 = new DoublyLinkedList<int>();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user