Introduction
This File contains a simple Data Structure Implementation using C#. It contains Stack implementation, Queue Implementation using a linked list, and Doubly Linked List.
Terminology
- PUSH: For inserting a new element in Data Structure.
- POP: For deleting an element from Data Structure.
- TRAVERSE: For listing out the elements of Data Structure.