OO Programming with Java


Exercices

  1. Defines the MathSet that represents mathematical sets with standard operation: union, intersection, etc.
  2. Rewrite the Group model from the preceding chapter to use MathSet (or an LinkedList) at the place of the array.
  3. Sort the orders, used as illustration in this chapter, by price then by name.
  4. By using a map, transform/translate the preceding orders into a "french menu"

13 - 13