Updated Linked List (incomplete)

This commit is contained in:
2022-03-04 08:45:53 +00:00
parent 3cc5502db4
commit 2382011f26
3 changed files with 43 additions and 11 deletions

View File

@ -1,2 +1,21 @@
// See https://aka.ms/new-console-template for more information
using System;
using C_.Datastructures;
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");
LinkedList<int> list = new LinkedList<int>();
list.Add(1);
list.Add(2);
list.Add(3);
LinkedList<int> list2 = new LinkedList<int>();
list2.Add(1);
list2.Add(2);
list2.Add(3);
LinkedList<int> list3 = LinkedList<int>.Create(list, list);
Console.ReadLine();