Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
310B

  1. template<class T>
  2. class Set : private DLList<T> {
  3. public :
  4. // Default-Konstruktoren + Zuweisung OK
  5. typedef typename DLList<T>::Iterator Iterator;
  6. Iterator begin();
  7. Iterator end();
  8. bool empty ();
  9. bool member (T t);
  10. void insert (T t);
  11. void remove (T t);
  12. // union, intersection, ... ?
  13. } ;