This will have all data structures and algorithms implemented in python.
- Stack implementation using list.
- Reverse a String using above stack.
- Infix to postfix conversion.
- Python implementation of link list.
- Find nth Node from last of linked list.
- Sorting. a). Bubble sort. b). Bubble sort improved. c). Selection sort. d). Insertion sort. e). Merge sort.
- Searching. a). Binary search algorithm.