1// Singly-linked list implementation -*- C++ -*-
3// Copyright (C) 2001-2022 Free Software Foundation, Inc.
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 3, or (at your option)
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
27 * Silicon Graphics Computer Systems, Inc.
29 * Permission to use, copy, modify, distribute and sell this software
30 * and its documentation for any purpose is hereby granted without fee,
31 * provided that the above copyright notice appear in all copies and
32 * that both that copyright notice and this permission notice appear
33 * in supporting documentation. Silicon Graphics makes no
34 * representations about the suitability of this software for any
35 * purpose. It is provided "as is" without express or implied warranty.
40 * This file is a GNU extension to the Standard C++ Library (possibly
41 * containing extensions from the HP/SGI STL subset).
48#include <bits/allocator.h>
49#include <bits/stl_construct.h>
50#include <bits/stl_uninitialized.h>
51#include <bits/concept_check.h>
52#include <ext/alloc_traits.h>
54namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
56_GLIBCXX_BEGIN_NAMESPACE_VERSION
58 struct _Slist_node_base
60 _Slist_node_base* _M_next;
63 inline _Slist_node_base*
64 __slist_make_link(_Slist_node_base* __prev_node,
65 _Slist_node_base* __new_node)
67 __new_node->_M_next = __prev_node->_M_next;
68 __prev_node->_M_next = __new_node;
72 inline _Slist_node_base*
73 __slist_previous(_Slist_node_base* __head,
74 const _Slist_node_base* __node)
76 while (__head && __head->_M_next != __node)
77 __head = __head->_M_next;
81 inline const _Slist_node_base*
82 __slist_previous(const _Slist_node_base* __head,
83 const _Slist_node_base* __node)
85 while (__head && __head->_M_next != __node)
86 __head = __head->_M_next;
91 __slist_splice_after(_Slist_node_base* __pos,
92 _Slist_node_base* __before_first,
93 _Slist_node_base* __before_last)
95 if (__pos != __before_first && __pos != __before_last)
97 _Slist_node_base* __first = __before_first->_M_next;
98 _Slist_node_base* __after = __pos->_M_next;
99 __before_first->_M_next = __before_last->_M_next;
100 __pos->_M_next = __first;
101 __before_last->_M_next = __after;
106 __slist_splice_after(_Slist_node_base* __pos, _Slist_node_base* __head)
108 _Slist_node_base* __before_last = __slist_previous(__head, 0);
109 if (__before_last != __head)
111 _Slist_node_base* __after = __pos->_M_next;
112 __pos->_M_next = __head->_M_next;
114 __before_last->_M_next = __after;
118 inline _Slist_node_base*
119 __slist_reverse(_Slist_node_base* __node)
121 _Slist_node_base* __result = __node;
122 __node = __node->_M_next;
123 __result->_M_next = 0;
126 _Slist_node_base* __next = __node->_M_next;
127 __node->_M_next = __result;
135 __slist_size(_Slist_node_base* __node)
137 std::size_t __result = 0;
138 for (; __node != 0; __node = __node->_M_next)
144 struct _Slist_node : public _Slist_node_base
149 struct _Slist_iterator_base
151 typedef std::size_t size_type;
152 typedef std::ptrdiff_t difference_type;
153 typedef std::forward_iterator_tag iterator_category;
155 _Slist_node_base* _M_node;
157 _Slist_iterator_base(_Slist_node_base* __x)
162 { _M_node = _M_node->_M_next; }
165 operator==(const _Slist_iterator_base& __x) const
166 { return _M_node == __x._M_node; }
169 operator!=(const _Slist_iterator_base& __x) const
170 { return _M_node != __x._M_node; }
173 template <class _Tp, class _Ref, class _Ptr>
174 struct _Slist_iterator : public _Slist_iterator_base
176 typedef _Slist_iterator<_Tp, _Tp&, _Tp*> iterator;
177 typedef _Slist_iterator<_Tp, const _Tp&, const _Tp*> const_iterator;
178 typedef _Slist_iterator<_Tp, _Ref, _Ptr> _Self;
180 typedef _Tp value_type;
181 typedef _Ptr pointer;
182 typedef _Ref reference;
183 typedef _Slist_node<_Tp> _Node;
186 _Slist_iterator(_Node* __x)
187 : _Slist_iterator_base(__x) {}
190 : _Slist_iterator_base(0) {}
192 _Slist_iterator(const iterator& __x)
193 : _Slist_iterator_base(__x._M_node) {}
197 { return ((_Node*) _M_node)->_M_data; }
201 { return &(operator*()); }
219 template <class _Tp, class _Alloc>
221 : public __alloc_traits<_Alloc>::template rebind<_Slist_node<_Tp> >::other
223 typedef typename __alloc_traits<_Alloc>::template
224 rebind<_Slist_node<_Tp> >::other _Node_alloc;
225 typedef _Alloc allocator_type;
228 get_allocator() const
229 { return *static_cast<const _Node_alloc*>(this); }
231 _Slist_base(const allocator_type& __a)
233 { this->_M_head._M_next = 0; }
236 { _M_erase_after(&this->_M_head, 0); }
239 _Slist_node_base _M_head;
243 { return _Node_alloc::allocate(1); }
246 _M_put_node(_Slist_node<_Tp>* __p)
247 { _Node_alloc::deallocate(__p, 1); }
250 _Slist_node_base* _M_erase_after(_Slist_node_base* __pos)
252 _Slist_node<_Tp>* __next = (_Slist_node<_Tp>*) (__pos->_M_next);
253 _Slist_node_base* __next_next = __next->_M_next;
254 __pos->_M_next = __next_next;
255 allocator_type __a = get_allocator();
256 __alloc_traits<allocator_type>::destroy(__a, &__next->_M_data);
260 _Slist_node_base* _M_erase_after(_Slist_node_base*, _Slist_node_base*);
263 template <class _Tp, class _Alloc>
265 _Slist_base<_Tp,_Alloc>::_M_erase_after(_Slist_node_base* __before_first,
266 _Slist_node_base* __last_node)
268 _Slist_node<_Tp>* __cur = (_Slist_node<_Tp>*) (__before_first->_M_next);
269 while (__cur != __last_node)
271 _Slist_node<_Tp>* __tmp = __cur;
272 __cur = (_Slist_node<_Tp>*) __cur->_M_next;
273 allocator_type __a = get_allocator();
274 __alloc_traits<allocator_type>::destroy(__a, &__tmp->_M_data);
277 __before_first->_M_next = __last_node;
282 * This is an SGI extension.
283 * @ingroup SGIextensions
286 template <class _Tp, class _Alloc = std::allocator<_Tp> >
287 class slist : private _Slist_base<_Tp,_Alloc>
289 // concept requirements
290 __glibcxx_class_requires(_Tp, _SGIAssignableConcept)
293 typedef _Slist_base<_Tp,_Alloc> _Base;
296 typedef _Tp value_type;
297 typedef value_type* pointer;
298 typedef const value_type* const_pointer;
299 typedef value_type& reference;
300 typedef const value_type& const_reference;
301 typedef std::size_t size_type;
302 typedef std::ptrdiff_t difference_type;
304 typedef _Slist_iterator<_Tp, _Tp&, _Tp*> iterator;
305 typedef _Slist_iterator<_Tp, const _Tp&, const _Tp*> const_iterator;
307 typedef typename _Base::allocator_type allocator_type;
310 get_allocator() const
311 { return _Base::get_allocator(); }
314 typedef _Slist_node<_Tp> _Node;
315 typedef _Slist_node_base _Node_base;
316 typedef _Slist_iterator_base _Iterator_base;
319 _M_create_node(const value_type& __x)
321 _Node* __node = this->_M_get_node();
324 allocator_type __a = get_allocator();
325 __alloc_traits<allocator_type>::construct(__a, &__node->_M_data,
331 this->_M_put_node(__node);
332 __throw_exception_again;
340 _Node* __node = this->_M_get_node();
343 allocator_type __a = get_allocator();
344 __alloc_traits<allocator_type>::construct(__a, &__node->_M_data,
350 this->_M_put_node(__node);
351 __throw_exception_again;
358 slist(const allocator_type& __a = allocator_type())
361 slist(size_type __n, const value_type& __x,
362 const allocator_type& __a = allocator_type())
364 { _M_insert_after_fill(&this->_M_head, __n, __x); }
368 : _Base(allocator_type())
369 { _M_insert_after_fill(&this->_M_head, __n, value_type()); }
371 // We don't need any dispatching tricks here, because
372 // _M_insert_after_range already does them.
373 template <class _InputIterator>
374 slist(_InputIterator __first, _InputIterator __last,
375 const allocator_type& __a = allocator_type())
377 { _M_insert_after_range(&this->_M_head, __first, __last); }
379 slist(const slist& __x)
380 : _Base(__x.get_allocator())
381 { _M_insert_after_range(&this->_M_head, __x.begin(), __x.end()); }
384 operator= (const slist& __x);
389 // assign(), a generalized assignment member function. Two
390 // versions: one that takes a count, and one that takes a range.
391 // The range version is a member template, so we dispatch on whether
392 // or not the type is an integer.
395 assign(size_type __n, const _Tp& __val)
396 { _M_fill_assign(__n, __val); }
399 _M_fill_assign(size_type __n, const _Tp& __val);
401 template <class _InputIterator>
403 assign(_InputIterator __first, _InputIterator __last)
405 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
406 _M_assign_dispatch(__first, __last, _Integral());
409 template <class _Integer>
411 _M_assign_dispatch(_Integer __n, _Integer __val, std::__true_type)
412 { _M_fill_assign((size_type) __n, (_Tp) __val); }
414 template <class _InputIterator>
416 _M_assign_dispatch(_InputIterator __first, _InputIterator __last,
423 { return iterator((_Node*)this->_M_head._M_next); }
427 { return const_iterator((_Node*)this->_M_head._M_next);}
431 { return iterator(0); }
435 { return const_iterator(0); }
437 // Experimental new feature: before_begin() returns a
438 // non-dereferenceable iterator that, when incremented, yields
439 // begin(). This iterator may be used as the argument to
440 // insert_after, erase_after, etc. Note that even for an empty
441 // slist, before_begin() is not the same iterator as end(). It
442 // is always necessary to increment before_begin() at least once to
446 { return iterator((_Node*) &this->_M_head); }
450 { return const_iterator((_Node*) &this->_M_head); }
454 { return __slist_size(this->_M_head._M_next); }
458 { return size_type(-1); }
460 _GLIBCXX_NODISCARD bool
462 { return this->_M_head._M_next == 0; }
466 { std::swap(this->_M_head._M_next, __x._M_head._M_next); }
472 { return ((_Node*) this->_M_head._M_next)->_M_data; }
476 { return ((_Node*) this->_M_head._M_next)->_M_data; }
479 push_front(const value_type& __x)
480 { __slist_make_link(&this->_M_head, _M_create_node(__x)); }
484 { __slist_make_link(&this->_M_head, _M_create_node()); }
489 _Node* __node = (_Node*) this->_M_head._M_next;
490 this->_M_head._M_next = __node->_M_next;
491 allocator_type __a = get_allocator();
492 __alloc_traits<allocator_type>::destroy(__a, &__node->_M_data);
493 this->_M_put_node(__node);
497 previous(const_iterator __pos)
498 { return iterator((_Node*) __slist_previous(&this->_M_head,
502 previous(const_iterator __pos) const
503 { return const_iterator((_Node*) __slist_previous(&this->_M_head,
508 _M_insert_after(_Node_base* __pos, const value_type& __x)
509 { return (_Node*) (__slist_make_link(__pos, _M_create_node(__x))); }
512 _M_insert_after(_Node_base* __pos)
513 { return (_Node*) (__slist_make_link(__pos, _M_create_node())); }
516 _M_insert_after_fill(_Node_base* __pos,
517 size_type __n, const value_type& __x)
519 for (size_type __i = 0; __i < __n; ++__i)
520 __pos = __slist_make_link(__pos, _M_create_node(__x));
523 // Check whether it's an integral type. If so, it's not an iterator.
524 template <class _InIterator>
526 _M_insert_after_range(_Node_base* __pos,
527 _InIterator __first, _InIterator __last)
529 typedef typename std::__is_integer<_InIterator>::__type _Integral;
530 _M_insert_after_range(__pos, __first, __last, _Integral());
533 template <class _Integer>
535 _M_insert_after_range(_Node_base* __pos, _Integer __n, _Integer __x,
537 { _M_insert_after_fill(__pos, __n, __x); }
539 template <class _InIterator>
541 _M_insert_after_range(_Node_base* __pos,
542 _InIterator __first, _InIterator __last,
545 while (__first != __last)
547 __pos = __slist_make_link(__pos, _M_create_node(*__first));
554 insert_after(iterator __pos, const value_type& __x)
555 { return iterator(_M_insert_after(__pos._M_node, __x)); }
558 insert_after(iterator __pos)
559 { return insert_after(__pos, value_type()); }
562 insert_after(iterator __pos, size_type __n, const value_type& __x)
563 { _M_insert_after_fill(__pos._M_node, __n, __x); }
565 // We don't need any dispatching tricks here, because
566 // _M_insert_after_range already does them.
567 template <class _InIterator>
569 insert_after(iterator __pos, _InIterator __first, _InIterator __last)
570 { _M_insert_after_range(__pos._M_node, __first, __last); }
573 insert(iterator __pos, const value_type& __x)
574 { return iterator(_M_insert_after(__slist_previous(&this->_M_head,
579 insert(iterator __pos)
580 { return iterator(_M_insert_after(__slist_previous(&this->_M_head,
585 insert(iterator __pos, size_type __n, const value_type& __x)
586 { _M_insert_after_fill(__slist_previous(&this->_M_head, __pos._M_node),
589 // We don't need any dispatching tricks here, because
590 // _M_insert_after_range already does them.
591 template <class _InIterator>
593 insert(iterator __pos, _InIterator __first, _InIterator __last)
594 { _M_insert_after_range(__slist_previous(&this->_M_head, __pos._M_node),
599 erase_after(iterator __pos)
600 { return iterator((_Node*) this->_M_erase_after(__pos._M_node)); }
603 erase_after(iterator __before_first, iterator __last)
605 return iterator((_Node*) this->_M_erase_after(__before_first._M_node,
610 erase(iterator __pos)
612 return iterator((_Node*) this->_M_erase_after
613 (__slist_previous(&this->_M_head, __pos._M_node)));
617 erase(iterator __first, iterator __last)
619 return iterator((_Node*) this->_M_erase_after
620 (__slist_previous(&this->_M_head, __first._M_node),
625 resize(size_type new_size, const _Tp& __x);
628 resize(size_type new_size)
629 { resize(new_size, _Tp()); }
633 { this->_M_erase_after(&this->_M_head, 0); }
636 // Moves the range [__before_first + 1, __before_last + 1) to *this,
637 // inserting it immediately after __pos. This is constant time.
639 splice_after(iterator __pos,
640 iterator __before_first, iterator __before_last)
642 if (__before_first != __before_last)
643 __slist_splice_after(__pos._M_node, __before_first._M_node,
644 __before_last._M_node);
647 // Moves the element that follows __prev to *this, inserting it
648 // immediately after __pos. This is constant time.
650 splice_after(iterator __pos, iterator __prev)
651 { __slist_splice_after(__pos._M_node,
652 __prev._M_node, __prev._M_node->_M_next); }
654 // Removes all of the elements from the list __x to *this, inserting
655 // them immediately after __pos. __x must not be *this. Complexity:
656 // linear in __x.size().
658 splice_after(iterator __pos, slist& __x)
659 { __slist_splice_after(__pos._M_node, &__x._M_head); }
661 // Linear in distance(begin(), __pos), and linear in __x.size().
663 splice(iterator __pos, slist& __x)
665 if (__x._M_head._M_next)
666 __slist_splice_after(__slist_previous(&this->_M_head, __pos._M_node),
668 __slist_previous(&__x._M_head, 0)); }
670 // Linear in distance(begin(), __pos), and in distance(__x.begin(), __i).
672 splice(iterator __pos, slist& __x, iterator __i)
673 { __slist_splice_after(__slist_previous(&this->_M_head, __pos._M_node),
674 __slist_previous(&__x._M_head, __i._M_node),
677 // Linear in distance(begin(), __pos), in distance(__x.begin(), __first),
678 // and in distance(__first, __last).
680 splice(iterator __pos, slist& __x, iterator __first, iterator __last)
682 if (__first != __last)
683 __slist_splice_after(__slist_previous(&this->_M_head, __pos._M_node),
684 __slist_previous(&__x._M_head, __first._M_node),
685 __slist_previous(__first._M_node,
693 if (this->_M_head._M_next)
694 this->_M_head._M_next = __slist_reverse(this->_M_head._M_next);
698 remove(const _Tp& __val);
709 template <class _Predicate>
711 remove_if(_Predicate __pred);
713 template <class _BinaryPredicate>
715 unique(_BinaryPredicate __pred);
717 template <class _StrictWeakOrdering>
719 merge(slist&, _StrictWeakOrdering);
721 template <class _StrictWeakOrdering>
723 sort(_StrictWeakOrdering __comp);
726 template <class _Tp, class _Alloc>
728 slist<_Tp, _Alloc>::operator=(const slist<_Tp, _Alloc>& __x)
732 _Node_base* __p1 = &this->_M_head;
733 _Node* __n1 = (_Node*) this->_M_head._M_next;
734 const _Node* __n2 = (const _Node*) __x._M_head._M_next;
737 __n1->_M_data = __n2->_M_data;
739 __n1 = (_Node*) __n1->_M_next;
740 __n2 = (const _Node*) __n2->_M_next;
743 this->_M_erase_after(__p1, 0);
745 _M_insert_after_range(__p1, const_iterator((_Node*)__n2),
751 template <class _Tp, class _Alloc>
753 slist<_Tp, _Alloc>::_M_fill_assign(size_type __n, const _Tp& __val)
755 _Node_base* __prev = &this->_M_head;
756 _Node* __node = (_Node*) this->_M_head._M_next;
757 for (; __node != 0 && __n > 0; --__n)
759 __node->_M_data = __val;
761 __node = (_Node*) __node->_M_next;
764 _M_insert_after_fill(__prev, __n, __val);
766 this->_M_erase_after(__prev, 0);
769 template <class _Tp, class _Alloc>
770 template <class _InputIterator>
772 slist<_Tp, _Alloc>::_M_assign_dispatch(_InputIterator __first,
773 _InputIterator __last,
776 _Node_base* __prev = &this->_M_head;
777 _Node* __node = (_Node*) this->_M_head._M_next;
778 while (__node != 0 && __first != __last)
780 __node->_M_data = *__first;
782 __node = (_Node*) __node->_M_next;
785 if (__first != __last)
786 _M_insert_after_range(__prev, __first, __last);
788 this->_M_erase_after(__prev, 0);
791 template <class _Tp, class _Alloc>
793 operator==(const slist<_Tp, _Alloc>& _SL1, const slist<_Tp, _Alloc>& _SL2)
795 typedef typename slist<_Tp,_Alloc>::const_iterator const_iterator;
796 const_iterator __end1 = _SL1.end();
797 const_iterator __end2 = _SL2.end();
799 const_iterator __i1 = _SL1.begin();
800 const_iterator __i2 = _SL2.begin();
801 while (__i1 != __end1 && __i2 != __end2 && *__i1 == *__i2)
806 return __i1 == __end1 && __i2 == __end2;
810 template <class _Tp, class _Alloc>
812 operator<(const slist<_Tp, _Alloc>& _SL1, const slist<_Tp, _Alloc>& _SL2)
813 { return std::lexicographical_compare(_SL1.begin(), _SL1.end(),
814 _SL2.begin(), _SL2.end()); }
816 template <class _Tp, class _Alloc>
818 operator!=(const slist<_Tp, _Alloc>& _SL1, const slist<_Tp, _Alloc>& _SL2)
819 { return !(_SL1 == _SL2); }
821 template <class _Tp, class _Alloc>
823 operator>(const slist<_Tp, _Alloc>& _SL1, const slist<_Tp, _Alloc>& _SL2)
824 { return _SL2 < _SL1; }
826 template <class _Tp, class _Alloc>
828 operator<=(const slist<_Tp, _Alloc>& _SL1, const slist<_Tp, _Alloc>& _SL2)
829 { return !(_SL2 < _SL1); }
831 template <class _Tp, class _Alloc>
833 operator>=(const slist<_Tp, _Alloc>& _SL1, const slist<_Tp, _Alloc>& _SL2)
834 { return !(_SL1 < _SL2); }
836 template <class _Tp, class _Alloc>
838 swap(slist<_Tp, _Alloc>& __x, slist<_Tp, _Alloc>& __y)
841 template <class _Tp, class _Alloc>
843 slist<_Tp, _Alloc>::resize(size_type __len, const _Tp& __x)
845 _Node_base* __cur = &this->_M_head;
846 while (__cur->_M_next != 0 && __len > 0)
849 __cur = __cur->_M_next;
852 this->_M_erase_after(__cur, 0);
854 _M_insert_after_fill(__cur, __len, __x);
857 template <class _Tp, class _Alloc>
859 slist<_Tp, _Alloc>::remove(const _Tp& __val)
861 _Node_base* __cur = &this->_M_head;
862 while (__cur && __cur->_M_next)
864 if (((_Node*) __cur->_M_next)->_M_data == __val)
865 this->_M_erase_after(__cur);
867 __cur = __cur->_M_next;
871 template <class _Tp, class _Alloc>
873 slist<_Tp, _Alloc>::unique()
875 _Node_base* __cur = this->_M_head._M_next;
878 while (__cur->_M_next)
880 if (((_Node*)__cur)->_M_data
881 == ((_Node*)(__cur->_M_next))->_M_data)
882 this->_M_erase_after(__cur);
884 __cur = __cur->_M_next;
889 template <class _Tp, class _Alloc>
891 slist<_Tp, _Alloc>::merge(slist<_Tp, _Alloc>& __x)
893 _Node_base* __n1 = &this->_M_head;
894 while (__n1->_M_next && __x._M_head._M_next)
896 if (((_Node*) __x._M_head._M_next)->_M_data
897 < ((_Node*) __n1->_M_next)->_M_data)
898 __slist_splice_after(__n1, &__x._M_head, __x._M_head._M_next);
899 __n1 = __n1->_M_next;
901 if (__x._M_head._M_next)
903 __n1->_M_next = __x._M_head._M_next;
904 __x._M_head._M_next = 0;
908 template <class _Tp, class _Alloc>
910 slist<_Tp, _Alloc>::sort()
912 if (this->_M_head._M_next && this->_M_head._M_next->_M_next)
919 __slist_splice_after(&__carry._M_head,
920 &this->_M_head, this->_M_head._M_next);
922 while (__i < __fill && !__counter[__i].empty())
924 __counter[__i].merge(__carry);
925 __carry.swap(__counter[__i]);
928 __carry.swap(__counter[__i]);
933 for (int __i = 1; __i < __fill; ++__i)
934 __counter[__i].merge(__counter[__i-1]);
935 this->swap(__counter[__fill-1]);
939 template <class _Tp, class _Alloc>
940 template <class _Predicate>
941 void slist<_Tp, _Alloc>::remove_if(_Predicate __pred)
943 _Node_base* __cur = &this->_M_head;
944 while (__cur->_M_next)
946 if (__pred(((_Node*) __cur->_M_next)->_M_data))
947 this->_M_erase_after(__cur);
949 __cur = __cur->_M_next;
953 template <class _Tp, class _Alloc>
954 template <class _BinaryPredicate>
956 slist<_Tp, _Alloc>::unique(_BinaryPredicate __pred)
958 _Node* __cur = (_Node*) this->_M_head._M_next;
961 while (__cur->_M_next)
963 if (__pred(((_Node*)__cur)->_M_data,
964 ((_Node*)(__cur->_M_next))->_M_data))
965 this->_M_erase_after(__cur);
967 __cur = (_Node*) __cur->_M_next;
972 template <class _Tp, class _Alloc>
973 template <class _StrictWeakOrdering>
975 slist<_Tp, _Alloc>::merge(slist<_Tp, _Alloc>& __x,
976 _StrictWeakOrdering __comp)
978 _Node_base* __n1 = &this->_M_head;
979 while (__n1->_M_next && __x._M_head._M_next)
981 if (__comp(((_Node*) __x._M_head._M_next)->_M_data,
982 ((_Node*) __n1->_M_next)->_M_data))
983 __slist_splice_after(__n1, &__x._M_head, __x._M_head._M_next);
984 __n1 = __n1->_M_next;
986 if (__x._M_head._M_next)
988 __n1->_M_next = __x._M_head._M_next;
989 __x._M_head._M_next = 0;
993 template <class _Tp, class _Alloc>
994 template <class _StrictWeakOrdering>
996 slist<_Tp, _Alloc>::sort(_StrictWeakOrdering __comp)
998 if (this->_M_head._M_next && this->_M_head._M_next->_M_next)
1001 slist __counter[64];
1005 __slist_splice_after(&__carry._M_head,
1006 &this->_M_head, this->_M_head._M_next);
1008 while (__i < __fill && !__counter[__i].empty())
1010 __counter[__i].merge(__carry, __comp);
1011 __carry.swap(__counter[__i]);
1014 __carry.swap(__counter[__i]);
1019 for (int __i = 1; __i < __fill; ++__i)
1020 __counter[__i].merge(__counter[__i-1], __comp);
1021 this->swap(__counter[__fill-1]);
1025_GLIBCXX_END_NAMESPACE_VERSION
1028namespace std _GLIBCXX_VISIBILITY(default)
1030_GLIBCXX_BEGIN_NAMESPACE_VERSION
1032 // Specialization of insert_iterator so that insertions will be constant
1033 // time rather than linear time.
1034 template <class _Tp, class _Alloc>
1035 class insert_iterator<__gnu_cxx::slist<_Tp, _Alloc> >
1038 typedef __gnu_cxx::slist<_Tp, _Alloc> _Container;
1039 _Container* container;
1040 typename _Container::iterator iter;
1043 typedef _Container container_type;
1044 typedef output_iterator_tag iterator_category;
1045 typedef void value_type;
1046 typedef void difference_type;
1047 typedef void pointer;
1048 typedef void reference;
1050 insert_iterator(_Container& __x, typename _Container::iterator __i)
1053 if (__i == __x.begin())
1054 iter = __x.before_begin();
1056 iter = __x.previous(__i);
1059 insert_iterator<_Container>&
1060 operator=(const typename _Container::value_type& __value)
1062 iter = container->insert_after(iter, __value);
1066 insert_iterator<_Container>&
1070 insert_iterator<_Container>&
1074 insert_iterator<_Container>&
1079_GLIBCXX_END_NAMESPACE_VERSION