-
Notifications
You must be signed in to change notification settings - Fork 1
/
Chain.hpp
263 lines (211 loc) · 5.86 KB
/
Chain.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/** This software is an adaptation of the theorem prover Vampire for
* working with large knowledge bases in the KIF format, see
* http://www.prover.info for publications on Vampire.
*
* Copyright (C) Andrei Voronkov and Alexandre Riazanov
*
* @author Alexandre Riazanov <riazanov@cs.man.ac.uk>
* @author Andrei Voronkov <voronkov@cs.man.ac.uk>, <andrei@voronkov.com>
*
* @date 06/06/2003
*
* This software is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Also add information on how to contact you by electronic and paper mail.
*/
// *************************************************************
//
// Class Chain<C> for implementing double-linked lists
// 03/05/2002 Manchester
//
// *************************************************************
#ifndef __chain__
# define __chain__
#include "Memory.hpp"
#include "Sort.hpp"
// *******************Class Chain*******************************
template <class C,ClassID ID>
class Chain
{
public:
class Link
{
private:
Link* _prev;
Link* _next;
C _elem;
public:
inline Link (C elem)
: _elem (elem)
{
}
inline Link () // for making the header to a chain only
{
_prev = this;
_next = this;
}
inline Link* prev () const { return _prev; }
inline void prev ( Link* p ) { _prev = p; }
inline Link* next () const { return _next; }
inline void next ( Link* n ) { _next = n; }
inline bool less (const Link* lnk) const
{ return _elem.less (lnk->_elem); }
void insertAfter (C elem)
{
Link* l = new Link (elem);
l->_prev = this;
l->_next = _next;
_next->_prev = l;
_next = l;
}
void insertBefore (C elem)
{
Link* l = new Link (elem);
l->_next = this;
l->_prev = _prev;
_prev->_next = l;
_prev = l;
}
void del ()
{
TRACER( "Chain::del" );
ASS(_next != this && _prev != this);
_prev->_next = _next;
_next->_prev = _prev;
delete this;
}
const C& content () const { return _elem; }
}; // Class Chain::Link
// I had to make this public since VC++ ignores my declaration of DelIterator as friend
inline const Link* header () const { return &_header; }
// Chain public members
inline void addLast (C elem)
{ _header.insertBefore (elem); }
inline void addFirst (C elem)
{ _header.insertAfter (elem); }
inline void delLast ()
{ _header.prev()->del(); }
void delFirst ()
{ _header.next()->del(); }
inline bool isEmpty () const
{ return _header.prev() == &_header; }
Link* first () const
{ ASS(! isEmpty());
return _header.next(); }
C last () const
{ ASS(! isEmpty());
return _header.prev(); }
void sort () // sort links using the less function on C
{
int len = length ();
Sort<Link*> srt (len);
for (Link* lnk = _header.next ();
lnk != &_header;
lnk = lnk->next () ) {
srt.add (lnk);
}
// sort the chain using the comparison function less ()
srt.sortF ();
// sort now contains a sorted array of links
// insert them one by one to the chain
Link* last = &_header; // the last link
for (int i = len - 1; i >= 0; i--) {
Link* nxt = srt[i];
// remove nxt from the chain
nxt->prev()->next (nxt->next());
nxt->next()->prev (nxt->prev());
// insert before the last link
nxt->next (last);
nxt->prev (last->prev());
nxt->prev()->next (nxt);
last->prev (nxt);
last = nxt;
}
}
int length () const
{ int len = 0;
Iterator links (*this);
while (links.more()) {
links.next ();
len ++;
}
return len;
} // length ()
class Iterator {
public:
inline explicit
Iterator (Chain& c)
: _header (c.header()),
_current (_header->next())
{}
Iterator (const Chain& c)
: _header (c.header()),
_current (_header->next())
{}
inline
bool more ()
{ return _header != _current; }
inline
C next ()
{ ASS(more());
C result = _current->content();
_current = _current->next();
return result;
}
private:
const Link* _header;
Link* _current;
};
class DelIterator {
public:
inline
DelIterator ( Chain& c ) :
_header ( c.header() ),
_current ( _header->next() )
{}
inline
bool more ()
{ return _header != _current; }
inline
C next ()
{
ASS(_current != _header);
C result = _current->content();
_current = _current->next();
return result;
}
inline
void del ()
{
ASS( _current->prev() != _header );
_current->prev()->del();
}
// 07/05/2002 Manchester
inline
void replace (C elem)
{
ASS( _current->prev() != _header );
_current->prev()->del();
_current->insertBefore (elem);
}
private:
const Link* _header;
Link* _current;
};
private:
Link _header;
friend class Iterator;
}; // class Chain
#endif