Posts

Showing posts from December, 2020

Menu driven program for Stack operations (Using Array)

Image
 Menu driven program for Stack operations (Using Array) Stack is a data structure that works on the principle of Last in First Out i.e. LIFO. The program given below is a C++ menu driven program for the implementation of stack and various operations used in stack like creation, traversing , push and pop operations . 

Menu Driven Program For Circular Linked List: creation, traversing, insertion and deletion(Circular Linked List)

Image
 Menu Driven Program For Circular Linked : creation, traversing, insertion and deletion(Circular Linked List) Circular Linked List is a very useful data structure and it also has various daily life applications . The below C++ program shows various operations for Circular Linked List like creation of circular linked list, traversing or displaying it, insertion and deletion operations in circular linked list at various locations that is at the end , in the beginning and at any given location. 

Menu Driven Program for Linked List operations: creation, traversing, insertion and deletion(Linked List)

Image
 Menu Driven Program for Linked List operations: creation, traversing, insertion and deletion(Linked List) Linked List is a very useful data structure and the below C++ program shows various operations for Linked List like creation of linked list, traversing or displaying it, insertion and deletion operations in linked list at various locations that is at the end , in the beginning and at any given location.