1 //////////////////////////////////////////////////////////////////////////////
4 // ADLib, Prop and their related set of tools and documentation are in the
5 // public domain. The author(s) of this software reserve no copyrights on
6 // the source code and any code generated using the tools. You are encouraged
7 // to use ADLib and Prop to develop software, in both academic and commercial
8 // settings, and are free to incorporate any part of ADLib and Prop into
11 // Although you are under no obligation to do so, we strongly recommend that
12 // you give away all software developed using our tools.
14 // We also ask that credit be given to us when ADLib and/or Prop are used in
15 // your programs, and that this notice be preserved intact in all the source
18 // This software is still under development and we welcome any suggestions
19 // and help from the users.
23 //////////////////////////////////////////////////////////////////////////////
25 #ifndef parametrized_doubly_linked_lists_h
26 #define parametrized_doubly_linked_lists_h
28 #include <AD/contain/dlist.h>
31 class DLinkList
: public DList
{
33 struct DNode
: public DLink
{
35 DNode(const T
& e
) : element(e
) {}
40 //////////////////////////////////////////////////////////////////////
41 // Constructor and destructors
42 //////////////////////////////////////////////////////////////////////
44 DLinkList(const DLinkList
&);
47 //////////////////////////////////////////////////////////////////////
49 //////////////////////////////////////////////////////////////////////
50 void operator = (const DLinkList
&);
52 //////////////////////////////////////////////////////////////////////
54 //////////////////////////////////////////////////////////////////////
55 Ix
insert_head (const T
& e
)
56 { return DList::insert_head(new DNode
<T
>(e
)); }
57 Ix
insert_tail (const T
& e
)
58 { return DList::insert_head(new DNode
<T
>(e
)); }
59 Ix
insert_after (Ix i
, const T
& e
)
60 { return DList::insert_after((DList
*)i
,new DNode
<T
>(e
)); }
61 Ix
insert_before(Ix i
, const T
& e
)
62 { return DList::insert_before((DList
*)i
,new DNode
<T
>(e
)); }
64 //////////////////////////////////////////////////////////////////////
66 //////////////////////////////////////////////////////////////////////
67 T
& operator () (Ix i
) { return ((DNode
<T
>*)i
)->element
; }