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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
#ifndef MYLIST_HPP
#define MYLIST_HPP
namespace std
{
template<typename _Tp, typename _Ref, typename _Ptr>
struct mylist_it
{
typedef mylist_it<_Tp, _Tp&, _Tp*> iterator;
typedef mylist_it<_Tp, const _Tp&, const _Tp*> const_iterator;
typedef random_access_iterator_tag iterator_category;
typedef _Tp value_type;
typedef _Ptr pointer;
typedef _Ref reference;
typedef size_t size_type;
typedef ptrdiff_t difference_type;
typedef _Tp** _Map_pointer;
typedef mylist_it _Self;
_Tp* _M_cur;
_Tp* _M_first;
_Tp* _M_last;
_Map_pointer _M_node;
mylist_it() : _M_cur(0), _M_first(0), _M_last(0), _M_node(0) {}
mylist_it(const iterator& __x)
: _M_cur(__x._M_cur), _M_first(__x._M_first),
_M_last(__x._M_last), _M_node(__x._M_node) {}
mylist_it(_Ref a):_M_cur(&a), _M_first(&a)
{
_Tp temp=*_M_cur;
_M_last=&temp;
for (int i=0; i<a.size; i++)
{
_M_last=_M_last->next;
}
_M_first=&a;
_M_cur=_M_first;
_M_node=&_M_first;
}
mylist_it(_Ptr a):_M_cur(a), _M_first(a), _M_node(&a)
{
_Tp temp=*_M_cur;
_M_last=&temp;
for (int i=0; i<a->size; i++)
{
_M_last=_M_last->next;
}
_M_first=a;
_M_cur=_M_first;
_M_node=&_M_first;
}
_Ref
operator*() const
{ return *_M_cur; }
pointer
operator->() const
{ return _M_cur; }
_Self&
operator++()
{
_M_cur=_M_cur->next;
return *this;
}
_Self
operator++(int)
{
_Self __tmp = *this;
++*this;
return __tmp;
}
_Self&
operator--()
{
_M_cur=_M_cur->prev;
return *this;
}
_Self
operator--(int)
{
_Self __tmp = *this;
--*this;
return __tmp;
}
_Self&
operator+=(difference_type __n)
{
for (int i=0; i<__n; i++)
{
(*this)++;
}
return *this;
}
_Self
operator+(difference_type __n) const
{
_Self __tmp=*this;
return __tmp += __n;
}
_Self&
operator-=(difference_type __n)
{ return *this += -__n; }
_Self
operator-(difference_type __n) const
{
_Self __tmp = *this;
return __tmp -= __n;
}
difference_type
operator-(_Self a)
{
_Self temp=*this;
int i;
for (i=0; temp!=a; i++, temp++);
return i;
}
reference
operator[](difference_type __n) const
{ return *(*this + __n); }
void
_M_set_node(_Map_pointer __new_node)
{
_M_node = __new_node;
_M_first = *__new_node;
_M_last = _M_first + _M_first->size;
}
};
template<typename _Tp, typename _Ref, typename _Ptr>
inline bool operator==(mylist_it<_Tp, _Ref, _Ptr> a, mylist_it<_Tp, _Ref, _Ptr> b)
{
return a._M_cur==b._M_cur;
}
template<typename _Tp, typename _Ref, typename _Ptr>
inline bool operator!=(mylist_it<_Tp, _Ref, _Ptr> a, mylist_it<_Tp, _Ref, _Ptr> b)
{
return !(a==b);
}
template<typename _Tp, typename _Ref, typename _Ptr>
inline bool operator<(mylist_it<_Tp, _Ref, _Ptr> a, mylist_it<_Tp, _Ref, _Ptr> b)
{
int i, j;
for (i=0; a._M_cur!=a._M_first; i++) a._M_cur=a._M_cur->prev;
for (j=0; b._M_cur!=b._M_first; i++) b._M_cur=b._M_cur->prev;
return i<j;
}
template<typename _Tp, typename _Ref, typename _Ptr>
inline bool operator>(mylist_it<_Tp, _Ref, _Ptr> a, mylist_it<_Tp, _Ref, _Ptr> b)
{
return b<a;
}
template<typename _Tp, typename _Ref, typename _Ptr>
inline bool operator<=(mylist_it<_Tp, _Ref, _Ptr> a, mylist_it<_Tp, _Ref, _Ptr> b)
{
return !(a>b);
}
template<typename _Tp, typename _Ref, typename _Ptr>
inline bool operator>=(mylist_it<_Tp, _Ref, _Ptr> a, mylist_it<_Tp, _Ref, _Ptr> b)
{
return !(a<b);
}
template<typename T>
struct mylist
{
typedef mylist_it<mylist<T>, mylist<T>&, mylist<T>*> iterator;
typedef T value_type;
T data;
mylist<T>* next;
mylist<T>* prev;
int size;
mylist()
{
data=T();
next=NULL;
prev=NULL;
size=0;
}
mylist(int n, T a=T())
{
mylist<T>* temp=this;
for (int i=0; i<n; i++)
{
temp->data=a;
temp->next=new mylist<T>;
temp->next->prev=temp;
temp=temp->next;
}
temp->next=NULL;
this->prev=NULL;
size=n;
}
void add(T a)
{
mylist<T>* temp=this;
if (!size)
{
size++;
data=a;
return;
}
while (temp->next!=NULL)
{
temp->next->prev=temp;
temp=temp->next;
}
temp->next=new mylist<T>;
temp->next->data=a;
temp->next->next=NULL;
temp->next->prev=temp;
this->prev=NULL;
size++;
}
iterator begin()
{
return *this;
}
iterator end()
{
return begin()+size;
}
};
template<typename T>
inline bool operator<(mylist<T> a, mylist<T> b)
{
return a.data<b.data;
}
template<typename T>
inline bool operator>(mylist<T> a, mylist<T> b)
{
return a.data>b.data;
}
template<typename T>
inline bool operator<=(mylist<T> a, mylist<T> b)
{
return a.data<=b.data;
}
template<typename T>
inline bool operator>=(mylist<T> a, mylist<T> b)
{
return a.data>=b.data;
}
template<typename T>
inline bool operator==(mylist<T> a, mylist<T> b)
{
return a.data==b.data;
}
template<typename T>
inline bool operator!=(mylist<T> a, mylist<T> b)
{
return a.data!=b.data;
}
template<typename T>
void swap(mylist<T> a, mylist<T> b)
{
swap(a.data, b.data);
}
}
#endif
|