Data Structures - C++
Homework Assignments 2011
- mixed fraction (example of using a class)
- fifo (linked list)
- lifo (linked list)
- bi-direction lifo (head pop, tail pop)
- binary tree (linked list) with delete, insert, search and ordered_print
- fifo (array)
- lifo (array)
- pre-fix evaluator
- infix to prefix converter
- bi-directional sorted Linked List
- create dog, cat and fish inheriting from animal
- generic linked list of animals (dog, cat, fish)
- template binary tree using inherited class dog
- Singleton class
- quicksort