Data Structure & Algorithm
1.Recursion
a) Multiplication in recursive way.
b) Finding factorial in recursive way.
c) Generating Fibonacci number.
2.Sorting
3.Stack
a) Stack implementation push and pop.
4.Queue
a) Queue implementation enqueue and dequeue.
5.Postfix notation
a) Conversion from infix to postfix.
b) Evaluation of a postfix notation.
6.Linklist
a) Operations on one way link list.
b) Operations on two day link list.
7.Tree
a) Traversing a Binary Search Tree.
b) Deletion of node form a Binary Search Tree.
8.Graph