Showing posts with the label data structureShow all
python program to Recursive implementation of  a. Factorial  b. Fibonacci  c. Tower of Hanoi
python program to Implement Binary Tree and its traversals.
Write a program to implement a linked list with following operations insert, delete a node from front , tail, search for a value in the list, delete a value from the list.
python program to Implement the following  (a) A queue as a list which you add and delete items from. (b) A circular queue. (The beginning items of the queue can be reused).
python program to Implement Program for a. Infix to Postfix conversion b. Postfix Evaluation
Implement working of Stacks. (pop method to take the last item added off the stack and a push method to add an item to the stack)