You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
995 lines
28 KiB
995 lines
28 KiB
// -*- C++ -*-
|
|
/***************************************************************************
|
|
*
|
|
* list - list declarations for the Standard Library
|
|
*
|
|
* $Id: list 172106 2011-11-02 17:04:12Z statham $
|
|
*
|
|
***************************************************************************
|
|
*
|
|
* Copyright (c) 1994
|
|
* Hewlett-Packard Company
|
|
*
|
|
* Permission to use, copy, modify, distribute and sell this software
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
* provided that the above copyright notice appear in all copies and
|
|
* that both that copyright notice and this permission notice appear
|
|
* in supporting documentation. Hewlett-Packard Company makes no
|
|
* representations about the suitability of this software for any
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
*
|
|
***************************************************************************
|
|
*
|
|
* Copyright (c) 1994-2001 Rogue Wave Software, Inc. All Rights Reserved.
|
|
*
|
|
* This computer software is owned by Rogue Wave Software, Inc. and is
|
|
* protected by U.S. copyright laws and other laws and by international
|
|
* treaties. This computer software is furnished by Rogue Wave Software,
|
|
* Inc. pursuant to a written license agreement and may be used, copied,
|
|
* transmitted, and stored only in accordance with the terms of such
|
|
* license and with the inclusion of the above copyright notice. This
|
|
* computer software or any other copies thereof may not be provided or
|
|
* otherwise made available to any other person.
|
|
*
|
|
* U.S. Government Restricted Rights. This computer software is provided
|
|
* with Restricted Rights. Use, duplication, or disclosure by the
|
|
* Government is subject to restrictions as set forth in subparagraph (c)
|
|
* (1) (ii) of The Rights in Technical Data and Computer Software clause
|
|
* at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the
|
|
* Commercial Computer Software--Restricted Rights at 48 CFR 52.227-19,
|
|
* as applicable. Manufacturer is Rogue Wave Software, Inc., 5500
|
|
* Flatiron Parkway, Boulder, Colorado 80301 USA.
|
|
*
|
|
**************************************************************************/
|
|
|
|
#ifndef _RWSTD_LIST_INCLUDED
|
|
#define _RWSTD_LIST_INCLUDED
|
|
|
|
#include <limits>
|
|
#include <memory>
|
|
|
|
#include <rw/_algobase.h>
|
|
#include <rw/_iterator.h>
|
|
#include <rw/_defs.h>
|
|
#include <rw/_error.h>
|
|
|
|
|
|
_RWSTD_NAMESPACE_BEGIN (std)
|
|
|
|
template <class _TypeT>
|
|
struct __rw_list_node
|
|
{
|
|
__rw_list_node* _C_next; // pointer to next node
|
|
__rw_list_node* _C_prev; // pointer to previous node
|
|
_TypeT _C_data; // client data
|
|
};
|
|
|
|
|
|
|
|
template <class _TypeT, class _DiffT, class _Pointer, class _Reference>
|
|
class __rw_list_iter
|
|
: public iterator <bidirectional_iterator_tag,
|
|
_TypeT, _DiffT, _Pointer, _Reference>
|
|
{
|
|
typedef iterator <bidirectional_iterator_tag,
|
|
_TypeT, _DiffT, _Pointer, _Reference>
|
|
_C_iter_base;
|
|
|
|
public:
|
|
|
|
typedef _TYPENAME _C_iter_base::value_type value_type;
|
|
typedef _TYPENAME _C_iter_base::difference_type difference_type;
|
|
typedef _TYPENAME _C_iter_base::pointer pointer;
|
|
typedef _TYPENAME _C_iter_base::reference reference;
|
|
|
|
// const_pointer and const_reference must be explicity typedef'ed to
|
|
// const value_type* and const value_type& since we don't know if
|
|
// _Pointer and _Reference are const types (they aren't if this isn't
|
|
// a const iterator)
|
|
typedef const value_type* const_pointer;
|
|
typedef const value_type& const_reference;
|
|
|
|
typedef bidirectional_iterator_tag iterator_category;
|
|
|
|
typedef __rw_list_iter <value_type, difference_type,
|
|
value_type*, value_type&> _C_mutable_iter;
|
|
|
|
typedef __rw_list_node<value_type>* _C_link_type;
|
|
|
|
__rw_list_iter () { }
|
|
|
|
__rw_list_iter (const _C_link_type& __rhs)
|
|
: _C_node (__rhs) { }
|
|
|
|
// no copy ctor other than the one below defined; will use
|
|
// a compiler generated one if __rw_list_iter != _C_mutable_iter
|
|
__rw_list_iter (const _C_mutable_iter &__rhs)
|
|
: _C_node (__rhs._C_node) { }
|
|
|
|
__rw_list_iter& operator++ () {
|
|
_C_node = (_C_link_type)((*_C_node)._C_next);
|
|
return *this;
|
|
}
|
|
|
|
__rw_list_iter& operator-- () {
|
|
_C_node = (_C_link_type)((*_C_node)._C_prev);
|
|
return *this;
|
|
}
|
|
|
|
__rw_list_iter operator++ (int) {
|
|
__rw_list_iter __tmp = *this;
|
|
return ++*this, __tmp;
|
|
}
|
|
|
|
__rw_list_iter operator-- (int) {
|
|
__rw_list_iter __tmp = *this;
|
|
return --*this, __tmp;
|
|
}
|
|
|
|
reference operator* () const {
|
|
return (*_C_node)._C_data;
|
|
}
|
|
|
|
_RWSTD_OPERATOR_ARROW (pointer operator-> () const);
|
|
|
|
difference_type operator- (const __rw_list_iter&) const {
|
|
return 0;
|
|
}
|
|
|
|
bool operator== (const __rw_list_iter& __iter) const {
|
|
return _C_node == __iter._C_node;
|
|
}
|
|
|
|
bool operator!= (const __rw_list_iter& __iter) const {
|
|
return !(*this == __iter);
|
|
}
|
|
|
|
// private:
|
|
|
|
_C_link_type _C_node;
|
|
};
|
|
|
|
|
|
#define _ITER_NODE(it) (_ITER_BASE (it)._C_node)
|
|
|
|
|
|
template <class _TypeT, class _DiffT, class _Ptr1, class _Ref1,
|
|
class _Ptr2, class _Ref2>
|
|
inline bool
|
|
operator== (const __rw_list_iter<_TypeT, _DiffT, _Ptr1, _Ref1> &__x,
|
|
const __rw_list_iter<_TypeT, _DiffT, _Ptr2, _Ref2> &__y)
|
|
|
|
{
|
|
return __x._C_node == __y._C_node;
|
|
}
|
|
|
|
|
|
template <class _TypeT, class _DiffT, class _Ptr1, class _Ref1,
|
|
class _Ptr2, class _Ref2>
|
|
inline bool
|
|
operator!= (const __rw_list_iter<_TypeT, _DiffT, _Ptr1, _Ref1> &__x,
|
|
const __rw_list_iter<_TypeT, _DiffT, _Ptr2, _Ref2> &__y)
|
|
{
|
|
return !(__x == __y);
|
|
}
|
|
|
|
|
|
template <class _TypeT,
|
|
class _Allocator _RWSTD_COMPLEX_DEFAULT (allocator<_TypeT>) >
|
|
class list : private _Allocator
|
|
{
|
|
public:
|
|
|
|
typedef _TypeT value_type;
|
|
typedef _Allocator allocator_type;
|
|
typedef _TYPENAME allocator_type::reference reference;
|
|
typedef _TYPENAME allocator_type::const_reference const_reference;
|
|
typedef _TYPENAME allocator_type::size_type size_type;
|
|
typedef _TYPENAME allocator_type::difference_type difference_type;
|
|
typedef _TYPENAME allocator_type::pointer pointer;
|
|
typedef _TYPENAME allocator_type::const_pointer const_pointer;
|
|
typedef __rw_list_node<value_type> _C_list_node;
|
|
typedef _C_list_node* _C_link_type;
|
|
|
|
struct _C_list_node_buffer;
|
|
|
|
typedef _RWSTD_REBIND (allocator_type, _C_list_node_buffer)
|
|
_C_buf_alloc_type;
|
|
|
|
typedef _RWSTD_REBIND (allocator_type, _C_list_node) _C_node_alloc_type;
|
|
typedef _RWSTD_ALLOC_TYPE (allocator_type, value_type) _C_value_alloc_type;
|
|
typedef _TYPENAME _C_buf_alloc_type::pointer _C_buf_pointer;
|
|
|
|
struct _C_list_node_buffer {
|
|
_C_buf_pointer _C_next_buf;
|
|
size_type _C_bufsize;
|
|
_C_link_type _C_buffer;
|
|
};
|
|
|
|
|
|
typedef __rw_list_iter<value_type, difference_type, pointer, reference>
|
|
_C_list_iter;
|
|
|
|
typedef __rw_list_iter<value_type, difference_type, const_pointer,
|
|
const_reference>
|
|
_C_list_citer;
|
|
|
|
|
|
#ifndef _RWSTD_NO_DEBUG_ITER
|
|
|
|
typedef _RW::__rw_debug_iter <list,_C_list_iter, _C_list_iter>
|
|
iterator;
|
|
|
|
typedef _RW::__rw_debug_iter <list,_C_list_citer, _C_list_iter>
|
|
const_iterator;
|
|
|
|
|
|
iterator _C_make_iter (const _C_link_type &__node) {
|
|
return iterator (*this, _C_list_iter (__node));
|
|
}
|
|
|
|
const_iterator _C_make_iter (const _C_link_type &__node) const {
|
|
return const_iterator (*this, _C_list_citer (__node));
|
|
}
|
|
|
|
#else // if defined (_RWSTD_NO_DEBUG_ITER)
|
|
|
|
typedef _C_list_iter iterator;
|
|
typedef _C_list_citer const_iterator;
|
|
|
|
iterator _C_make_iter (const _C_link_type &__node) {
|
|
return iterator (__node);
|
|
}
|
|
|
|
const_iterator _C_make_iter (const _C_link_type &__node) const {
|
|
return const_iterator (__node);
|
|
}
|
|
|
|
#endif // _RWSTD_NO_DEBUG_ITER
|
|
|
|
|
|
#if !defined (_RWSTD_NO_CLASS_PARTIAL_SPEC)
|
|
|
|
typedef _STD::reverse_iterator<const_iterator> const_reverse_iterator;
|
|
typedef _STD::reverse_iterator<iterator> reverse_iterator;
|
|
|
|
#else
|
|
|
|
typedef _RW::__reverse_bi_iterator<const_iterator,
|
|
bidirectional_iterator_tag, value_type,
|
|
const_reference, const_pointer, difference_type>
|
|
const_reverse_iterator;
|
|
|
|
typedef _RW::__reverse_bi_iterator<iterator,
|
|
bidirectional_iterator_tag, value_type,
|
|
reference, pointer, difference_type>
|
|
reverse_iterator;
|
|
|
|
#endif // !_RWSTD_NO_CLASS_PARTIAL_SPEC
|
|
|
|
protected:
|
|
|
|
_C_buf_pointer _C_buflist;
|
|
_C_link_type _C_free_list;
|
|
_C_link_type _C_next_avail;
|
|
_C_link_type _C_last;
|
|
_C_link_type _C_node;
|
|
size_type _C_length;
|
|
|
|
void _C_add_buffer (bool);
|
|
|
|
void _C_free_buffers ();
|
|
|
|
_C_link_type _C_get_node (bool __is_list_empty = false) {
|
|
if (_C_free_list) {
|
|
_C_link_type __link = _C_free_list;
|
|
_C_free_list = _C_free_list->_C_next;
|
|
return __link;
|
|
}
|
|
if (_C_next_avail == _C_last) {
|
|
_C_add_buffer(__is_list_empty);
|
|
}
|
|
return _C_next_avail++;
|
|
}
|
|
|
|
void _C_put_node (_C_link_type __link) {
|
|
__link->_C_next = _C_free_list;
|
|
_C_free_list = __link;
|
|
}
|
|
|
|
// here and only here is _C_node initialized
|
|
void _C_init(bool __is_list_empty = false) {
|
|
_C_node = _C_get_node (__is_list_empty);
|
|
(*_C_node)._C_next = _C_node;
|
|
(*_C_node)._C_prev = _C_node;
|
|
}
|
|
|
|
void _C_init (size_type __n, value_type __val) {
|
|
_C_init();
|
|
_TRY {
|
|
insert (begin (), __n, __val);
|
|
}
|
|
_CATCH (...) {
|
|
_C_free_buffers ();
|
|
_RETHROW;
|
|
}
|
|
}
|
|
|
|
public:
|
|
|
|
_EXPLICIT
|
|
list (const allocator_type& __alloc = allocator_type ())
|
|
: allocator_type (__alloc), _C_buflist (0), _C_free_list (0),
|
|
_C_next_avail (0), _C_last (0), _C_node (0), _C_length (0) {
|
|
_C_init (true);
|
|
}
|
|
|
|
_EXPLICIT
|
|
list (size_type __n,
|
|
const_reference __x = value_type (),
|
|
const allocator_type &__alloc = allocator_type ())
|
|
: allocator_type (__alloc), _C_buflist (0), _C_free_list (0),
|
|
_C_next_avail (0), _C_last (0), _C_node (0), _C_length (0) {
|
|
_C_init (__n, __x);
|
|
}
|
|
|
|
#ifndef _RWSTD_NO_MEMBER_TEMPLATES
|
|
|
|
template<class _InputIterator>
|
|
void _C_init (_InputIterator __first, _InputIterator __last,
|
|
_RWSTD_DISPATCH_INT (false)) {
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
_C_init();
|
|
_TRY {
|
|
insert (begin (), __first, __last);
|
|
}
|
|
_CATCH (...) {
|
|
_C_free_buffers ();
|
|
_RETHROW;
|
|
}
|
|
}
|
|
|
|
template<class _InputIterator>
|
|
void _C_init (_InputIterator __first, _InputIterator __last,
|
|
_RWSTD_DISPATCH_INT (true)) {
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
_C_init (__first, __last);
|
|
}
|
|
|
|
template<class _InputIterator>
|
|
list (_InputIterator __first, _InputIterator __last,
|
|
const allocator_type& __alloc = allocator_type ())
|
|
: allocator_type (__alloc), _C_buflist (0), _C_free_list (0),
|
|
_C_next_avail (0), _C_last (0), _C_node (0), _C_length (0) {
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
_C_init (__first, __last, _RWSTD_DISPATCH (_InputIterator));
|
|
}
|
|
|
|
#else // if defined (_RWSTD_NO_MEMBER_TEMPLATES)
|
|
|
|
list (const_iterator __first, const_iterator __last,
|
|
const allocator_type& __alloc = allocator_type ())
|
|
: allocator_type (__alloc), _C_buflist (0), _C_free_list (0),
|
|
_C_next_avail (0), _C_last (0), _C_node (0), _C_length (0) {
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
_C_init();
|
|
_TRY {
|
|
insert (begin (), __first, __last);
|
|
}
|
|
_CATCH (...) {
|
|
_C_free_buffers ();
|
|
_RETHROW;
|
|
}
|
|
}
|
|
|
|
list (const_pointer __first, const_pointer __last,
|
|
const allocator_type& __alloc = allocator_type ())
|
|
: allocator_type (__alloc), _C_buflist (0), _C_free_list (0),
|
|
_C_next_avail (0), _C_last (0), _C_node (0), _C_length (0) {
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
_C_init();
|
|
_TRY {
|
|
insert (begin (), __first, __last);
|
|
}
|
|
_CATCH (...) {
|
|
_C_free_buffers ();
|
|
_RETHROW;
|
|
}
|
|
}
|
|
|
|
#endif // _RWSTD_NO_MEMBER_TEMPLATES
|
|
|
|
list (const list &__rhs)
|
|
: allocator_type (__rhs.get_allocator ()), _C_buflist (0),
|
|
_C_free_list (0), _C_next_avail (0), _C_last (0), _C_node (0),
|
|
_C_length (0) {
|
|
_C_init();
|
|
_TRY {
|
|
insert (begin (), __rhs.begin (), __rhs.end ());
|
|
}
|
|
_CATCH (...) {
|
|
_C_free_buffers ();
|
|
_RETHROW;
|
|
}
|
|
}
|
|
|
|
~list () {
|
|
if (_C_node) {
|
|
clear ();
|
|
_C_put_node (_C_node);
|
|
_C_free_buffers ();
|
|
}
|
|
}
|
|
|
|
list& operator= (const list&);
|
|
|
|
#ifndef _RWSTD_NO_MEMBER_TEMPLATES
|
|
|
|
template<class _InputIterator>
|
|
void assign (_InputIterator __first, _InputIterator __last) {
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
|
|
clear ();
|
|
_C_insert (begin (), __first, __last,
|
|
_RWSTD_DISPATCH (_InputIterator));
|
|
}
|
|
|
|
void assign (size_type __n, const_reference __val) {
|
|
clear ();
|
|
insert (begin (), __n, __val);
|
|
}
|
|
|
|
#else
|
|
|
|
void assign (const_iterator __first, const_iterator __last) {
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
|
|
clear ();
|
|
insert (begin (), __first, __last);
|
|
}
|
|
|
|
void assign (const_pointer __first, const_pointer __last) {
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
|
|
clear ();
|
|
insert (begin (), __first, __last);
|
|
}
|
|
|
|
void assign (size_type __n, const_reference __val) {
|
|
clear ();
|
|
insert (begin (), __n, __val);
|
|
}
|
|
|
|
#endif // _RWSTD_NO_MEMBER_TEMPLATES
|
|
|
|
allocator_type get_allocator () const {
|
|
return *this;
|
|
}
|
|
|
|
iterator begin () {
|
|
return _C_make_iter ((*_C_node)._C_next);
|
|
}
|
|
|
|
const_iterator begin () const {
|
|
return _C_make_iter ((*_C_node)._C_next);
|
|
}
|
|
|
|
iterator end () {
|
|
return _C_make_iter (_C_node);
|
|
}
|
|
|
|
const_iterator end () const {
|
|
return _C_make_iter (_C_node);
|
|
}
|
|
|
|
reverse_iterator rbegin () {
|
|
return reverse_iterator (end ());
|
|
}
|
|
|
|
const_reverse_iterator rbegin () const {
|
|
return const_reverse_iterator (end ());
|
|
}
|
|
|
|
reverse_iterator rend () {
|
|
return reverse_iterator (begin ());
|
|
}
|
|
|
|
const_reverse_iterator rend () const {
|
|
return const_reverse_iterator (begin ());
|
|
}
|
|
|
|
bool empty () const {
|
|
return 0 == size ();
|
|
}
|
|
|
|
size_type size () const {
|
|
return _C_length;
|
|
}
|
|
|
|
size_type max_size () const {
|
|
return _C_node_alloc_type (*this).max_size ();
|
|
}
|
|
|
|
void resize (size_type, value_type);
|
|
|
|
void resize (size_type __n) {
|
|
resize (__n, value_type ());
|
|
}
|
|
|
|
reference front () {
|
|
_RWSTD_ASSERT (!empty ());
|
|
return *begin ();
|
|
}
|
|
|
|
const_reference front () const {
|
|
_RWSTD_ASSERT (!empty ());
|
|
return *begin ();
|
|
}
|
|
|
|
reference back () {
|
|
_RWSTD_ASSERT (!empty ());
|
|
return *--end ();
|
|
}
|
|
|
|
const_reference back () const {
|
|
_RWSTD_ASSERT (!empty ());
|
|
return *--end ();
|
|
}
|
|
|
|
void push_front (const_reference __x) {
|
|
insert (begin (), __x);
|
|
_RWSTD_ASSERT (!empty ());
|
|
}
|
|
|
|
void push_back (const_reference __x) {
|
|
insert (end (), __x);
|
|
_RWSTD_ASSERT (!empty ());
|
|
}
|
|
|
|
void pop_front () {
|
|
_RWSTD_ASSERT (!empty ());
|
|
erase (begin ());
|
|
}
|
|
|
|
void pop_back () {
|
|
_RWSTD_ASSERT (!empty ());
|
|
erase (--end ());
|
|
}
|
|
|
|
iterator insert (iterator __it, const_reference __x);
|
|
|
|
#ifndef _RWSTD_NO_MEMBER_TEMPLATES
|
|
|
|
// handles bidirectional iterators
|
|
template <class _InputIterator>
|
|
void _C_insert (const iterator &__it,
|
|
_InputIterator __first, _InputIterator __last,
|
|
bidirectional_iterator_tag) {
|
|
_RWSTD_ASSERT_RANGE (begin (), __it);
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
|
|
for ( ;__first != __last; ++__first)
|
|
insert (__it, *__first);
|
|
}
|
|
|
|
// handles input iterators
|
|
template <class _InputIterator>
|
|
void _C_insert (iterator __it,
|
|
_InputIterator __first, _InputIterator __last,
|
|
input_iterator_tag) {
|
|
_RWSTD_ASSERT_RANGE (begin (), __it);
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
|
|
for ( ;__first != __last; ++__first, ++__it)
|
|
__it = insert (__it, *__first);
|
|
}
|
|
|
|
// handles nonintegral types
|
|
template<class _InputIterator>
|
|
void _C_insert (const iterator &__it,
|
|
_InputIterator __first, _InputIterator __last,
|
|
_RWSTD_DISPATCH_INT (false)) {
|
|
typedef _TYPENAME iterator_traits <_InputIterator>::iterator_category
|
|
_IterCat;
|
|
|
|
_C_insert (__it, __first, __last, _IterCat ());
|
|
}
|
|
|
|
// handles integral types
|
|
template<class _InputIterator>
|
|
void _C_insert (const iterator &__it,
|
|
_InputIterator __first, _InputIterator __last,
|
|
_RWSTD_DISPATCH_INT (true)) {
|
|
_C_insert (__it, __first, __last);
|
|
}
|
|
|
|
template<class _InputIterator>
|
|
void insert (iterator __it,
|
|
_InputIterator __first, _InputIterator __last ) {
|
|
|
|
_RWSTD_ASSERT_RANGE (begin (), __it);
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
|
|
// calling insert on a list specialized on an integral type
|
|
// may lead to ambiguities if the actual function arguments do not
|
|
// exactly match those of the non-templatized function (below)
|
|
// the dispatch mechanism determines whether the arguments
|
|
// really are iterators or whether they are just integral types
|
|
// and calls the appropriate implementation function
|
|
_C_insert (__it, __first, __last, _RWSTD_DISPATCH (_InputIterator));
|
|
}
|
|
|
|
void insert (iterator __it, size_type __n, const_reference __val) {
|
|
_RWSTD_ASSERT_RANGE (begin (), __it);
|
|
|
|
_C_insert (__it, __n, __val);
|
|
}
|
|
|
|
#else // if defined (_RWSTD_NO_MEMBER_TEMPLATES)
|
|
|
|
void insert (iterator __it, size_type __n, const_reference __x) {
|
|
_RWSTD_ASSERT_RANGE (begin (), __it);
|
|
|
|
_C_insert (__it, __n, __x);
|
|
}
|
|
|
|
void insert (iterator __it, const_pointer __first, const_pointer __last) {
|
|
_RWSTD_ASSERT_RANGE (begin (), __it);
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
|
|
for (; __first != __last; ++__first)
|
|
insert (__it, *__first);
|
|
}
|
|
|
|
void insert (iterator __it,
|
|
const_iterator __first, const_iterator __last) {
|
|
_RWSTD_ASSERT_RANGE (begin (), __it);
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
|
|
for (; __first != __last; ++__first)
|
|
insert (__it, *__first);
|
|
}
|
|
|
|
#endif // _RWSTD_NO_MEMBER_TEMPLATES
|
|
|
|
iterator erase (iterator);
|
|
|
|
iterator erase (iterator, iterator);
|
|
|
|
void swap (list&);
|
|
|
|
void clear () {
|
|
erase (begin (), end ());
|
|
}
|
|
|
|
protected:
|
|
|
|
void _C_transfer (iterator, iterator, iterator, list&);
|
|
|
|
void _C_advance (iterator &__it, difference_type __n,
|
|
const iterator &__end) {
|
|
while (__n-- && __it != __end)
|
|
++__it;
|
|
}
|
|
|
|
// uses transfer_node to merge in list by transfering nodes to list
|
|
void _C_adjacent_merge (iterator, iterator, iterator);
|
|
|
|
#ifndef _RWSTD_NO_MEMBER_TEMPLATES
|
|
|
|
// uses transfer_node to merge in list by transfering nodes to list
|
|
template<class _Compare>
|
|
void _C_adjacent_merge (iterator, iterator, iterator, _Compare);
|
|
|
|
#else // if defined (_RWSTD_NO_MEMBER_TEMPLATES)
|
|
|
|
void _C_adjacent_merge (iterator, iterator, iterator,
|
|
bool (*)(const_reference, const_reference));
|
|
|
|
#endif // _RWSTD_NO_MEMBER_TEMPLATES
|
|
|
|
void _C_insert (iterator __it, size_type __n, const_reference __x) {
|
|
_RWSTD_ASSERT_RANGE (begin (), __it);
|
|
|
|
while (__n--)
|
|
insert (__it, __x);
|
|
}
|
|
|
|
public:
|
|
|
|
void splice (iterator __it, list& __x) {
|
|
_RWSTD_ASSERT (&__x != this);
|
|
_RWSTD_ASSERT_RANGE (begin (), __it);
|
|
|
|
if (!__x.empty ())
|
|
_C_transfer (__it, __x.begin (), __x.end (), __x);
|
|
}
|
|
|
|
void splice (iterator __pos, list& __x, iterator __it) {
|
|
_RWSTD_ASSERT_RANGE (__it, __x.end ());
|
|
_RWSTD_ASSERT_DEREF (__it);
|
|
|
|
iterator __tmp = __it;
|
|
if (__tmp != __pos && ++__tmp != __pos)
|
|
_C_transfer (__pos, __it, __tmp, __x);
|
|
}
|
|
|
|
void splice (iterator __it, list& __x, iterator __first, iterator __last) {
|
|
_RWSTD_ASSERT_IN_RANGE (__x.begin (), __first, __last);
|
|
|
|
if (__first != __last)
|
|
_C_transfer (__it, __first, __last, __x);
|
|
}
|
|
|
|
void remove (const_reference);
|
|
|
|
void unique ();
|
|
|
|
void merge (list&);
|
|
|
|
void reverse ();
|
|
|
|
void sort ();
|
|
|
|
#ifndef _RWSTD_NO_MEMBER_TEMPLATES
|
|
|
|
template<class _Predicate>
|
|
void remove_if (_Predicate);
|
|
|
|
template<class _BinaryPredicate>
|
|
void unique (_BinaryPredicate);
|
|
|
|
template<class _Compare>
|
|
void merge (list &__x, _Compare);
|
|
|
|
template<class _Compare>
|
|
void sort (_Compare);
|
|
|
|
#else // if defined (_RWSTD_NO_MEMBER_TEMPLATES)
|
|
|
|
void remove_if (bool (*)(const_reference));
|
|
|
|
void unique (bool (*)(const_reference, const_reference));
|
|
|
|
void merge (list &__x, bool (*)(const_reference, const_reference));
|
|
|
|
void sort (bool (*)(const_reference, const_reference));
|
|
|
|
#endif // _RWSTD_NO_MEMBER_TEMPLATES
|
|
|
|
};
|
|
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
inline bool
|
|
operator== (const list<_TypeT, _Allocator>& __x,
|
|
const list<_TypeT, _Allocator>& __y)
|
|
{
|
|
return __x.size () == __y.size ()
|
|
&& equal (__x.begin (), __x.end (), __y.begin ());
|
|
}
|
|
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
inline bool
|
|
operator< (const list<_TypeT, _Allocator>& __x,
|
|
const list<_TypeT, _Allocator>& __y)
|
|
{
|
|
return lexicographical_compare (__x.begin (), __x.end (),
|
|
__y.begin (), __y.end ());
|
|
}
|
|
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
inline bool
|
|
operator!= (const list<_TypeT, _Allocator>& __x,
|
|
const list<_TypeT, _Allocator>& __y)
|
|
{
|
|
return !(__x == __y);
|
|
}
|
|
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
inline bool
|
|
operator<= (const list<_TypeT, _Allocator>& __x,
|
|
const list<_TypeT, _Allocator>& __y)
|
|
{
|
|
return !(__y < __x);
|
|
}
|
|
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
inline bool
|
|
operator> (const list<_TypeT, _Allocator>& __x,
|
|
const list<_TypeT, _Allocator>& __y)
|
|
{
|
|
return __y < __x;
|
|
}
|
|
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
inline bool
|
|
operator>= (const list<_TypeT, _Allocator>& __x,
|
|
const list<_TypeT, _Allocator>& __y)
|
|
{
|
|
return !(__x < __y);
|
|
}
|
|
|
|
|
|
#ifndef _RWSTD_NO_PART_SPEC_OVERLOAD
|
|
template <class _TypeT, class _Allocator>
|
|
inline void swap (list<_TypeT, _Allocator>& __x,
|
|
list<_TypeT, _Allocator>& __y)
|
|
{
|
|
__x.swap (__y);
|
|
}
|
|
#endif
|
|
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
inline _TYPENAME list<_TypeT, _Allocator>::iterator
|
|
list<_TypeT, _Allocator>::erase (iterator __first, iterator __last)
|
|
{
|
|
_RWSTD_ASSERT_RANGE (begin (), __first);
|
|
_RWSTD_ASSERT_RANGE (__first, __last);
|
|
|
|
while (__first != __last) {
|
|
__first = erase (__first);
|
|
}
|
|
|
|
return __first;
|
|
}
|
|
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
inline _TYPENAME list<_TypeT, _Allocator>::iterator
|
|
list<_TypeT, _Allocator>::insert (iterator __it, const_reference __x)
|
|
{
|
|
_RWSTD_ASSERT_RANGE (begin (), __it);
|
|
|
|
// create temporary allocator for non-conforming compilers
|
|
// which need to use allocator_interface
|
|
_C_link_type __tmp = _C_get_node ();
|
|
|
|
_TRY {
|
|
_RWSTD_VALUE_ALLOC (_C_value_alloc_type,
|
|
construct (_RWSTD_VALUE_ALLOC
|
|
(_C_value_alloc_type,
|
|
address ((*__tmp)._C_data)), __x));
|
|
}
|
|
_CATCH (...) {
|
|
_C_put_node (__tmp);
|
|
_RETHROW;
|
|
}
|
|
|
|
(*__tmp)._C_next = _ITER_NODE (__it);
|
|
(*__tmp)._C_prev = (*_ITER_NODE (__it))._C_prev;
|
|
|
|
(*(_C_link_type ((*_ITER_NODE (__it))._C_prev)))._C_next = __tmp;
|
|
|
|
(*_ITER_NODE (__it))._C_prev = __tmp;
|
|
|
|
++_C_length;
|
|
|
|
return _C_make_iter (__tmp);
|
|
}
|
|
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
inline _TYPENAME list<_TypeT, _Allocator>::iterator
|
|
list<_TypeT, _Allocator>::erase (iterator __it)
|
|
{
|
|
_RWSTD_ASSERT_RANGE (begin (), __it);
|
|
|
|
if (__it == end ())
|
|
return end ();
|
|
|
|
iterator __tmp =
|
|
_C_make_iter (_C_link_type ((*_ITER_NODE (__it))._C_next));
|
|
|
|
(*(_C_link_type ((*_ITER_NODE (__it))._C_prev)))._C_next =
|
|
(*_ITER_NODE (__it))._C_next;
|
|
(*(_C_link_type ((*_ITER_NODE (__it))._C_next)))._C_prev =
|
|
(*_ITER_NODE (__it))._C_prev;
|
|
|
|
--_C_length;
|
|
|
|
_RWSTD_VALUE_ALLOC (_C_value_alloc_type,
|
|
destroy (_RWSTD_VALUE_ALLOC (_C_value_alloc_type,
|
|
address ((*_ITER_NODE (__it))._C_data))));
|
|
_C_put_node (_ITER_NODE (__it));
|
|
|
|
return __tmp;
|
|
}
|
|
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
inline void
|
|
list<_TypeT, _Allocator>::swap (list &__x)
|
|
{
|
|
if (get_allocator () == __x.get_allocator ()) {
|
|
_STD::swap (_C_node, __x._C_node);
|
|
_STD::swap (_C_length, __x._C_length);
|
|
_STD::swap (_C_buflist, __x._C_buflist);
|
|
_STD::swap (_C_free_list, __x._C_free_list);
|
|
_STD::swap (_C_next_avail, __x._C_next_avail);
|
|
_STD::swap (_C_last, __x._C_last);
|
|
}
|
|
else {
|
|
list &__tmp = *this;
|
|
*this = __x;
|
|
__x = __tmp;
|
|
}
|
|
}
|
|
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
inline void list<_TypeT, _Allocator>::
|
|
_C_adjacent_merge (iterator __first1, iterator __last1, iterator __last2)
|
|
{
|
|
difference_type __n = _DISTANCE (__first1, __last1, difference_type);
|
|
|
|
for (iterator __first2 = __last1; __n >= 0 && __first2 != __last2; ) {
|
|
if (*__first2 < *__first1) {
|
|
iterator __next = __first2;
|
|
_C_transfer (__first1, __first2, ++__next, *this);
|
|
__first2 = __next;
|
|
}
|
|
else {
|
|
++__first1;
|
|
--__n;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
#ifndef _RWSTD_NO_MEMBER_TEMPLATES
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
template<class _Compare>
|
|
inline void list<_TypeT, _Allocator>::
|
|
_C_adjacent_merge (iterator __first1, iterator __last1, iterator __last2,
|
|
_Compare __cmp)
|
|
|
|
#else // if defined (_RWSTD_NO_MEMBER_TEMPLATES)
|
|
|
|
template <class _TypeT, class _Allocator>
|
|
inline void list<_TypeT, _Allocator>::
|
|
_C_adjacent_merge (iterator __first1, iterator __last1, iterator __last2,
|
|
bool (*__cmp)(const_reference, const_reference))
|
|
|
|
#endif // _RWSTD_NO_MEMBER_TEMPLATES
|
|
{
|
|
difference_type __n = _DISTANCE (__first1, __last1, difference_type);
|
|
|
|
for (iterator __first2 = __last1; __n >= 0 && __first2 != __last2; ) {
|
|
if (__cmp (*__first2, *__first1)) {
|
|
iterator __next = __first2;
|
|
_C_transfer (__first1, __first2, ++__next, *this);
|
|
__first2 = __next;
|
|
}
|
|
else {
|
|
++__first1;
|
|
--__n;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
_RWSTD_NAMESPACE_END // std
|
|
|
|
#undef _ITER_NODE
|
|
|
|
#ifdef _RWSTD_COMPILE_INSTANTIATE
|
|
# include <list.cc>
|
|
#endif
|
|
|
|
|
|
#ifndef _RWSTD_NO_STL_SPECIALIZATION
|
|
# include "list_spec.h"
|
|
#endif // _RWSTD_NO_STL_SPECIALIZATION
|
|
|
|
|
|
#endif //_RWSTD_LIST_INCLUDED
|
|
|