Lecture overview -- Keyboard shortcut: 'u'  Previous page: The class <b><kbd>LinkedListNode<T></kbd></b> -- Keyboard shortcut: 'p'  Next page: Time complexity overview: Collection classes  -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Help page about these notes  Alphabetic index  Course home  Page 19 : 36
Object-oriented Programming in C#
Collection Classes
Sample use of class LinkedList<T>

/user/normark/oop-csharp-1/sources/c-sharp/collections/linkedlist/0/prog.csBasic operations on a LinkedList of integers.


/user/normark/oop-csharp-1/sources/c-sharp/collections/linkedlist/0/outputOutput of the program with basic operations on a LinkedList.


/user/normark/oop-csharp-1/sources/c-sharp/collections/linkedlist/1/prog.csBasic operations on a LinkedList of integers - using LinkedListNodes.


/user/normark/oop-csharp-1/sources/c-sharp/collections/linkedlist/1/outputOutput of the program with LinkedListNode operations on a LinkedList.