Data Structures - C++

Homework Assignments 2011

  1. mixed fraction (example of using a class)
  2. fifo (linked list)
  3. lifo (linked list)
  4. bi-direction lifo (head pop, tail pop)
  5. binary tree (linked list) with delete, insert, search and ordered_print
  6. fifo (array)
  7. lifo (array)
  8. pre-fix evaluator
  9. infix to prefix converter
  10. bi-directional sorted Linked List
  11. create dog, cat and fish inheriting from animal
  12. generic linked list of animals (dog, cat, fish)
  13. template binary tree using inherited class dog
  14. Singleton class
  15. quicksort