00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef _LIST_H_
00030 #define _LIST_H_
00031
00032 #include "MayDay.H"
00033
00034
00035 template <class T> class ListLink;
00036 template <class T> class ListIterator;
00037 template <class T> class List;
00038
00039 template <class T>
00040 class ListLink
00041 {
00042 private:
00043 friend class List<T>;
00044 friend class ListIterator<T>;
00045
00046 ListLink (const T& _val,
00047 ListLink<T>* _pre,
00048 ListLink<T>* _suc)
00049 : val(_val),
00050 pre(_pre),
00051 suc(_suc)
00052 {}
00053
00054 private:
00055 T val;
00056 ListLink<T>* pre;
00057 ListLink<T>* suc;
00058 };
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070 template <class T>
00071 class ListIterator
00072 {
00073 public:
00074
00075
00076
00077 inline ListIterator (const List<T>& aList);
00078
00079
00080
00081 inline ListIterator (const ListIterator<T>& rhs);
00082
00083
00084
00085
00086 inline void rewind ();
00087
00088
00089
00090
00091 inline const T& operator() () const;
00092
00093
00094
00095
00096 inline const T& operator* () const;
00097
00098
00099
00100
00101
00102
00103
00104 inline operator bool () const;
00105
00106
00107
00108
00109 inline bool operator! () const;
00110
00111
00112
00113
00114 inline const T& value () const;
00115
00116
00117
00118
00119
00120
00121 inline ListIterator<T>& operator++ ();
00122
00123
00124
00125
00126
00127
00128 inline ListIterator<T>& operator-- ();
00129
00130
00131
00132
00133
00134
00135
00136 inline ListIterator<T> operator-- (int);
00137
00138
00139
00140
00141
00142
00143 inline ListIterator<T> operator++ (int);
00144
00145
00146
00147
00148 inline bool operator== (const ListIterator<T>&) const;
00149
00150
00151
00152 inline bool operator!= (const ListIterator<T>&) const;
00153
00154 protected:
00155
00156
00157
00158 inline ListIterator (const List<T>& _list,
00159 ListLink<T>* _p);
00160
00161
00162
00163 const List<T>& list;
00164
00165
00166
00167 ListLink<T>* p;
00168
00169 private:
00170 friend class List<T>;
00171
00172
00173
00174 ListIterator ();
00175 ListIterator<T>& operator= (const ListIterator<T>&);
00176 };
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210 template <class T>
00211 class List
00212 {
00213 public:
00214
00215
00216
00217 inline List ();
00218
00219
00220
00221 List (const List<T>& rhs);
00222
00223
00224
00225 List<T>& operator= (const List<T>& rhs);
00226
00227
00228
00229 inline ~List();
00230
00231
00232
00233 inline void prepend (const T& value);
00234
00235
00236
00237 inline void append (const T& value);
00238
00239
00240
00241 void add (const T& value);
00242
00243
00244
00245 void join (const List<T>& src);
00246
00247
00248
00249
00250
00251
00252
00253 void catenate (List<T>& src);
00254
00255
00256
00257 void clear ();
00258
00259
00260
00261
00262 inline List<T>* copy () const;
00263
00264
00265
00266 inline T& firstElement () const;
00267
00268
00269
00270 inline T& lastElement () const;
00271
00272
00273
00274
00275
00276 bool includes (const T& value) const;
00277
00278
00279
00280
00281
00282
00283 bool operator== (const List<T>& rhs) const;
00284
00285
00286
00287 bool operator!= (const List<T>& rhs) const;
00288
00289
00290
00291 inline bool isEmpty () const;
00292
00293
00294
00295 inline bool isNotEmpty () const;
00296
00297
00298
00299 int length () const;
00300
00301
00302
00303 inline void removeFirst ();
00304
00305
00306
00307 inline void removeLast ();
00308
00309
00310
00311 inline const T& operator[] (const ListIterator<T>& li) const;
00312
00313
00314
00315 inline T& operator[] (const ListIterator<T>& li);
00316
00317
00318
00319 void remove (const T& value);
00320
00321
00322
00323
00324 void remove (const List<T>& lst);
00325
00326
00327
00328 void remove (ListIterator<T>& lit);
00329
00330
00331
00332 inline void replace (ListIterator<T>& li,
00333 const T& val);
00334
00335
00336
00337
00338 inline void addAfter (ListIterator<T>& lit,
00339 const T& val);
00340
00341
00342
00343
00344 inline void addBefore (ListIterator<T>& lit,
00345 const T& val);
00346
00347
00348
00349 inline ListIterator<T> first () const;
00350
00351
00352
00353 inline ListIterator<T> last () const;
00354
00355 protected:
00356
00357
00358
00359 void remove (ListLink<T> *ln);
00360
00361
00362
00363 ListLink<T>* addBefore (ListLink<T>* ln,
00364 const T& val);
00365
00366
00367
00368 ListLink<T>* addAfter (ListLink<T>* ln,
00369 const T& val);
00370
00371
00372
00373 ListLink<T>* head;
00374
00375
00376
00377 ListLink<T>* tail;
00378
00379
00380
00381 friend class ListIterator<T>;
00382 };
00383
00384
00385
00386
00387
00388
00389
00390
00391
00392 template <class T>
00393 inline
00394 ListIterator<T>::ListIterator (const List<T>& _list,
00395 ListLink<T>* _p)
00396 : list(_list),
00397 p(_p)
00398 {}
00399
00400 template <class T>
00401 inline
00402 ListIterator<T>::ListIterator (const List<T>& aList)
00403 : list(aList)
00404 {
00405 p = list.head;
00406 }
00407
00408 template <class T>
00409 inline
00410 ListIterator<T>::ListIterator (const ListIterator<T>& li)
00411 : list(li.list),
00412 p(li.p)
00413 {}
00414
00415 template <class T>
00416 inline
00417 void
00418 ListIterator<T>::rewind ()
00419 {
00420 p = list.head;
00421 }
00422
00423 template <class T>
00424 inline
00425 const T&
00426 ListIterator<T>::operator() () const
00427 {
00428 assert(p != 0);
00429 return p->val;
00430 }
00431
00432 template <class T>
00433 inline
00434 const T&
00435 ListIterator<T>::operator* () const
00436 {
00437 assert(p != 0);
00438 return p->val;
00439 }
00440
00441 template <class T>
00442 inline
00443 ListIterator<T>::operator bool () const
00444 {
00445 return p != 0 ? true : false;
00446 }
00447
00448 template <class T>
00449 inline
00450 bool
00451 ListIterator<T>::operator! () const
00452 {
00453 return p == 0 ? true : false;
00454 }
00455
00456 template <class T>
00457 inline
00458 const T&
00459 ListIterator<T>::value () const
00460 {
00461 assert(p != 0);
00462 return p->val;
00463 }
00464
00465 template <class T>
00466 inline
00467 ListIterator<T>&
00468 ListIterator<T>::operator++ ()
00469 {
00470 if (p)
00471 p = p->suc;
00472 return *this;
00473 }
00474
00475 template <class T>
00476 inline
00477 ListIterator<T>&
00478 ListIterator<T>::operator-- ()
00479 {
00480 if (p)
00481 p = p->pre;
00482 return *this;
00483 }
00484
00485 template <class T>
00486 inline
00487 ListIterator<T>
00488 ListIterator<T>::operator++ (int)
00489 {
00490 const ListIterator<T> li = *this;
00491 ++(*this);
00492 return li;
00493 }
00494
00495 template <class T>
00496 inline
00497 ListIterator<T>
00498 ListIterator<T>::operator-- (int)
00499 {
00500 const ListIterator<T> li = *this;
00501 --(*this);
00502 return li;
00503 }
00504
00505 template <class T>
00506 inline
00507 bool
00508 ListIterator<T>::operator== (const ListIterator<T>& _li) const
00509 {
00510 return (&list == &_li.list && p == _li.p) ? true : false;
00511 }
00512
00513 template <class T>
00514 inline
00515 bool
00516 ListIterator<T>::operator!= (const ListIterator<T>& _li) const
00517 {
00518 return ! ListIterator<T>::operator==(_li);
00519 }
00520
00521
00522
00523
00524
00525 template <class T>
00526 inline
00527 List<T>::List ()
00528 : head(0),
00529 tail(0)
00530 {}
00531
00532 template <class T>
00533 inline
00534 List<T>::~List ()
00535 {
00536 clear();
00537 }
00538
00539 template <class T>
00540 inline
00541 void
00542 List<T>::prepend (const T& value)
00543 {
00544 addBefore(head, value);
00545 }
00546
00547 template <class T>
00548 inline
00549 void
00550 List<T>::append (const T& value)
00551 {
00552 addAfter(tail, value);
00553 }
00554
00555 template <class T>
00556 inline
00557 List<T>*
00558 List<T>::copy () const
00559 {
00560 List<T>* newlist = new List<T>(*this);
00561 if (newlist == 0)
00562 MayDay::Error("Out of memory in List::copy ");
00563 return newlist;
00564 }
00565
00566 template <class T>
00567 inline
00568 T&
00569 List<T>::firstElement () const
00570 {
00571 assert(head != 0);
00572 return head->val;
00573 }
00574
00575 template <class T>
00576 inline
00577 T&
00578 List<T>::lastElement () const
00579 {
00580 assert(tail != 0);
00581 return tail->val;
00582 }
00583
00584 template <class T>
00585 inline
00586 bool
00587 List<T>::isEmpty () const
00588 {
00589 return head == 0 && tail == 0;
00590 }
00591
00592 template <class T>
00593 inline
00594 bool
00595 List<T>::isNotEmpty () const
00596 {
00597 return !isEmpty();
00598 }
00599
00600 template <class T>
00601 inline
00602 void
00603 List<T>::removeFirst ()
00604 {
00605 remove(head);
00606 }
00607
00608 template <class T>
00609 inline
00610 void
00611 List<T>::removeLast ()
00612 {
00613 remove(tail);
00614 }
00615
00616 template <class T>
00617 inline
00618 const T&
00619 List<T>::operator[] (const ListIterator<T>& li) const
00620 {
00621 assert(li.p != 0);
00622 return li.p->val;
00623 }
00624
00625 template <class T>
00626 inline
00627 T&
00628 List<T>::operator[] (const ListIterator<T>& li)
00629 {
00630 assert(li.p != 0);
00631 return li.p->val;
00632 }
00633
00634 template <class T>
00635 inline
00636 void
00637 List<T>::replace (ListIterator<T>& li,
00638 const T& _val)
00639 {
00640 assert(li.p != 0);
00641 li.p->val = _val;
00642 }
00643
00644 template <class T>
00645 inline
00646 void
00647 List<T>::addAfter (ListIterator<T>& lit,
00648 const T& val)
00649 {
00650 addAfter(lit.p, val);
00651 }
00652
00653 template <class T>
00654 inline
00655 void
00656 List<T>::addBefore (ListIterator<T>& lit,
00657 const T& val)
00658 {
00659 addBefore(lit.p, val);
00660 }
00661
00662 template <class T>
00663 inline
00664 ListIterator<T>
00665 List<T>::first () const
00666 {
00667 return ListIterator<T>(*this,head);
00668 }
00669
00670 template <class T>
00671 inline
00672 ListIterator<T>
00673 List<T>::last () const
00674 {
00675 return ListIterator<T>(*this,tail);
00676 }
00677
00678 #include "ListImplem.H"
00679
00680 #endif