Summary of Everything
Linked List Linked List is a type of linear data structure. It is not like an array but instead linked list elements are not stored at a contiguous location. In linked list the elements are linked using pointers. A linked list is better than array in terms of insertion and deletion since linked list makes it easier to do that. A drawback about using Linked List is that it doesn't allow random access instead it has to access it sequentially starting from the 1st node. we cannot use binary search with linked list with its default implementation. Stack and Queue Stack is a linear data structure that follows a particular order in which the operators performed. The order can be "Last to enter First to get out" or "First to enter First to Get Out". In C# stack has 4 basic operators which are Push, Pop, Peek, isEmpty. Push is used to add an item in the stack. Pop is used to remove an item in the stack. Peek is used to return the object at the beginning of the sta...