Implementing Linked Lists in C#
- by nijhawan.saurabh
Why?
The question is why you need Linked Lists and why it is the
foundation of any Abstract Data Structure.
Take any of the Data Structures - Stacks, Queues, Heaps,
Trees; there are two ways to go about implementing them -
Using Arrays
Using Linked Lists
Now you use Arrays when you know about the size of the Nodes
in the list at Compile…