?? stl_list.h
字號:
return iterator(&_M_iter_list,__tmp);
# else
return __tmp;
# endif
}
iterator insert(iterator __position) { return insert(__position, _Tp()); }
#ifdef __STL_MEMBER_TEMPLATES
// Check whether it's an integral type. If so, it's not an iterator.
template<class _Integer>
void _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __x,
__true_type) {
_M_fill_insert(__pos, (size_type) __n, (_Tp) __x);
}
template <class _InputIter>
void
_M_insert_dispatch(iterator __position,
_InputIter __first, _InputIter __last,
__false_type) {
for ( ; __first != __last; ++__first)
insert(__position, *__first);
}
template <class _InputIterator>
void insert(iterator __pos, _InputIterator __first, _InputIterator __last) {
typedef typename _Is_integer<_InputIterator>::_Integral _Integral;
_M_insert_dispatch(__pos, __first, __last, _Integral());
}
#else /* __STL_MEMBER_TEMPLATES */
void insert(iterator __position, const _Tp* __first, const _Tp* __last);
void insert(iterator __position,
const_iterator __first, const_iterator __last);
#endif /* __STL_MEMBER_TEMPLATES */
void insert(iterator __pos, size_type __n, const _Tp& __x)
{ _M_fill_insert(__pos, __n, __x); }
void _M_fill_insert(iterator __pos, size_type __n, const _Tp& __x);
void push_front(const _Tp& __x) { insert(begin(), __x); }
void push_front() {insert(begin());}
void push_back(const _Tp& __x) { insert(end(), __x); }
void push_back() {insert(end());}
iterator erase(iterator __position) {
__stl_debug_check(__check_if_owner(&_M_iter_list,__position));
__stl_verbose_assert(__position._M_node!=_M_node._M_data, _StlMsg_ERASE_PAST_THE_END);
_Node* __next_node = (_Node*) (__position._M_node->_M_next);
_Node* __prev_node = (_Node*) (__position._M_node->_M_prev);
__prev_node->_M_next = __next_node;
__next_node->_M_prev = __prev_node;
__stl_debug_do(__invalidate_iterator(&_M_iter_list, __position));
destroy(&__position._M_node->_M_data);
_M_node.deallocate(__position._M_node, 1);
# if defined ( __STL_DEBUG )
return iterator(&_M_iter_list,__next_node);
# else
return iterator(__next_node);
# endif
}
iterator erase(iterator __first, iterator __last);
// void clear() { _Base::clear(); }
void resize(size_type __new_size, const _Tp& __x);
void resize(size_type __new_size) { resize(__new_size, _Tp()); }
void pop_front() { erase(begin()); }
void pop_back() {
iterator __tmp = end();
erase(--__tmp);
}
list(size_type __n, const _Tp& __value,
const allocator_type& __a = __STL_ALLOC_INSTANCE(allocator_type))
: _List_base<_Tp, _Alloc>(__a)
{ insert(begin(), __n, __value); }
explicit list(size_type __n)
: _List_base<_Tp, _Alloc>(allocator_type())
{ insert(begin(), __n, _Tp()); }
#ifdef __STL_MEMBER_TEMPLATES
// We don't need any dispatching tricks here, because insert does all of
// that anyway.
template <class _InputIterator>
list(_InputIterator __first, _InputIterator __last,
const allocator_type& __a = __STL_ALLOC_INSTANCE(allocator_type))
: _List_base<_Tp, _Alloc>(__a)
{ insert(begin(), __first, __last); }
#else /* __STL_MEMBER_TEMPLATES */
list(const _Tp* __first, const _Tp* __last,
const allocator_type& __a = __STL_ALLOC_INSTANCE(allocator_type))
: _List_base<_Tp, _Alloc>(__a)
{ insert(begin(), __first, __last); }
list(const_iterator __first, const_iterator __last,
const allocator_type& __a)
: _List_base<_Tp, _Alloc>(__a)
{ insert(begin(), __first, __last); }
list(const_iterator __first, const_iterator __last)
: _List_base<_Tp, _Alloc>(allocator_type())
{ insert(begin(), __first, __last); }
#endif /* __STL_MEMBER_TEMPLATES */
list(const list<_Tp, _Alloc>& __x) : _List_base<_Tp, _Alloc>(__x.get_allocator())
{ insert(begin(), __x.begin(), __x.end()); }
~list() { }
list<_Tp, _Alloc>& operator=(const list<_Tp, _Alloc>& __x);
public:
// assign(), a generalized assignment member function. Two
// versions: one that takes a count, and one that takes a range.
// The range version is a member template, so we dispatch on whether
// or not the type is an integer.
void assign(size_type __n, const _Tp& __val) { _M_fill_assign(__n, __val); }
void _M_fill_assign(size_type __n, const _Tp& __val);
#ifdef __STL_MEMBER_TEMPLATES
template <class _InputIterator>
void assign(_InputIterator __first, _InputIterator __last) {
typedef typename _Is_integer<_InputIterator>::_Integral _Integral;
_M_assign_dispatch(__first, __last, _Integral());
}
template <class _Integer>
void _M_assign_dispatch(_Integer __n, _Integer __val, __true_type)
{ assign((size_type) __n, (_Tp) __val); }
template <class _InputIterator>
void _M_assign_dispatch(_InputIterator __first2, _InputIterator __last2,
__false_type) {
iterator __first1 = begin();
iterator __last1 = end();
for ( ; __first1 != __last1 && __first2 != __last2; ++__first1, ++__first2)
*__first1 = *__first2;
if (__first2 == __last2)
erase(__first1, __last1);
else
insert(__last1, __first2, __last2);
}
#endif /* __STL_MEMBER_TEMPLATES */
protected:
public:
void splice(iterator __position, _Self& __x) {
__stl_verbose_assert(&__x!=this, _StlMsg_INVALID_ARGUMENT);
__stl_debug_check(__check_if_owner(&_M_iter_list,__position));
if (!__x.empty())
_List_global_inst::_Transfer(__position._M_node, __x.begin()._M_node, __x.end()._M_node);
__stl_debug_do(__x._Invalidate_all());
}
# if defined ( __STL_DEBUG )
void splice(iterator __position, _Self& __x, iterator __i) {
# else
void splice(iterator __position, _Self&, iterator __i) {
# endif
__stl_debug_check(__check_if_owner(&_M_iter_list,__position) &&
__check_if_owner(&__x._M_iter_list ,__i));
__stl_verbose_assert(__i._M_node!=__i._Owner_node(), _StlMsg_NOT_DEREFERENCEABLE);
iterator __j = __i;
++__j;
# if defined ( __STL_DEBUG )
if (( &__x == this ) && (__position == __i || __position == __j)) return;
# else
if (__position == __i || __position == __j) return;
# endif
_List_global_inst::_Transfer(__position._M_node, __i._M_node, __j._M_node);
__stl_debug_do(__invalidate_iterator(&__x._M_iter_list, __i));
}
# if defined ( __STL_DEBUG )
void splice(iterator __position, _Self& __x, iterator __first, iterator __last) {
__stl_debug_check(__check_if_owner(&_M_iter_list, __position));
__stl_verbose_assert(__first._Owner()==&__x._M_iter_list && __last._Owner()==&__x._M_iter_list,
_StlMsg_NOT_OWNER);
# else
void splice(iterator __position, _Self&, iterator __first, iterator __last) {
# endif
if (__first != __last)
_List_global_inst::_Transfer(__position._M_node, __first._M_node, __last._M_node);
}
void remove(const _Tp& __value);
void unique();
void merge(_Self& __x);
void reverse();
void sort();
#ifdef __STL_MEMBER_TEMPLATES
# ifndef __STL_INLINE_MEMBER_TEMPLATES
template <class _Predicate> void remove_if(_Predicate);
template <class _BinaryPredicate> void unique(_BinaryPredicate);
template <class _StrictWeakOrdering> void merge(list<_Tp, _Alloc>&, _StrictWeakOrdering);
template <class _StrictWeakOrdering> void sort(_StrictWeakOrdering);
# else
template <class _Predicate>
void remove_if(_Predicate __pred)
{
iterator __first = begin();
iterator __last = end();
while (__first != __last) {
iterator __next = __first;
++__next;
if (__pred(*__first)) erase(__first);
__first = __next;
}
}
template <class _BinaryPredicate>
void unique(_BinaryPredicate __binary_pred) {
iterator __first = begin();
iterator __last = end();
if (__first == __last) return;
iterator __next = __first;
while (++__next != __last) {
if (__binary_pred(*__first, *__next))
erase(__next);
else
__first = __next;
__next = __first;
}
}
template <class _StrictWeakOrdering>
void merge(list<_Tp, _Alloc>& __x,
_StrictWeakOrdering __comp) {
iterator __first1 = begin();
iterator __last1 = end();
iterator __first2 = __x.begin();
iterator __last2 = __x.end();
while (__first1 != __last1 && __first2 != __last2)
if (__comp(*__first2, *__first1)) {
iterator __next = __first2;
_List_global_inst::_Transfer(__first1._M_node, __first2._M_node, (++__next)._M_node);
__first2 = __next;
}
else
++__first1;
if (__first2 != __last2) _List_global_inst::_Transfer(__last1._M_node, __first2._M_node, __last2._M_node);
}
template <class _StrictWeakOrdering>
void sort(_StrictWeakOrdering __comp) {
// Do nothing if the list has length 0 or 1.
if (_M_node._M_data->_M_next != _M_node._M_data &&
((_Node*) (_M_node._M_data->_M_next))->_M_next != _M_node._M_data) {
list<_Tp, _Alloc> __carry;
list<_Tp, _Alloc> __counter[64];
int __fill = 0;
while (!empty()) {
__carry.splice(__carry.begin(), *this, begin());
int __i = 0;
while(__i < __fill && !__counter[__i].empty()) {
__counter[__i].merge(__carry, __comp);
__carry.swap(__counter[__i++]);
}
__carry.swap(__counter[__i]);
if (__i == __fill) ++__fill;
}
for (int __i = 1; __i < __fill; ++__i)
__counter[__i].merge(__counter[__i-1], __comp);
swap(__counter[__fill-1]);
}
__stl_debug_do(_Invalidate_all());
}
# endif /* __STL_INLINE_MEMBER_TEMPLATES */
#endif /* __STL_MEMBER_TEMPLATES */
};
template <class _Tp, class _Alloc>
__STL_INLINE_LOOP bool operator==(const list<_Tp,_Alloc>& __x,
const list<_Tp,_Alloc>& __y)
{
typedef typename list<_Tp,_Alloc>::const_iterator const_iterator;
const_iterator __end1 = __x.end();
const_iterator __end2 = __y.end();
const_iterator __i1 = __x.begin();
const_iterator __i2 = __y.begin();
while (__i1 != __end1 && __i2 != __end2 && *__i1 == *__i2) {
++__i1;
++__i2;
}
return __i1 == __end1 && __i2 == __end2;
}
template <class _Tp, class _Alloc>
inline bool operator<(const list<_Tp,_Alloc>& __x,
const list<_Tp,_Alloc>& __y)
{
return lexicographical_compare(__x.begin(), __x.end(),
__y.begin(), __y.end());
}
#ifdef __STL_USE_SEPARATE_RELOPS_NAMESPACE
template <class _Tp, class _Alloc>
inline void
swap(list<_Tp, _Alloc>& __x, list<_Tp, _Alloc>& __y)
{
__x.swap(__y);
}
#endif /* __STL_USE_SEPARATE_RELOPS_NAMESPACE */
// do a cleanup
# undef list
# define __list__ __FULL_NAME(list)
# if defined (__STL_USE_WRAPPER_FOR_ALLOC_PARAM)
// provide a "default" list adaptor
template <class _Tp>
class list : public __list__<_Tp, __STL_DEFAULT_ALLOCATOR(_Tp) >
{
# define __LIST_SUPER __list__<_Tp, __STL_DEFAULT_ALLOCATOR(_Tp) >
public:
typedef __LIST_SUPER _Super;
__IMPORT_WITH_REVERSE_ITERATORS(_Super)
__IMPORT_SUPER_COPY_ASSIGNMENT(list, list<_Tp>, __LIST_SUPER)
list() { }
explicit list(size_type __n, const _Tp& __value) : __LIST_SUPER(__n, __value) { }
explicit list(size_type __n) : __LIST_SUPER(__n) { }
list(const _Tp* __first, const _Tp* __last) : __LIST_SUPER(__first, __last) { }
list(const_iterator __first, const_iterator __last) : __LIST_SUPER(__first, __last) { }
# undef __LIST_SUPER
};
# if defined (__STL_BASE_MATCH_BUG)
template <class _Tp>
inline bool operator==(const list<_Tp>& __x, const list<_Tp>& __y) {
typedef typename list<_Tp>::_Super _Super;
return operator == ((const _Super&)__x,(const _Super&)__y);
}
template <class _Tp>
inline bool operator<(const list<_Tp>& __x, const list<_Tp>& __y) {
return lexicographical_compare(__x.begin(), __x.end(),
__y.begin(), __y.end());
}
# endif
# endif /* WRAPPER */
__STL_END_NAMESPACE
#if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
#pragma reset woff 1174
#pragma reset woff 1375
#endif
# if !defined (__STL_LINK_TIME_INSTANTIATION)
# include <stl_list.c>
# endif
#endif /* __SGI_STL_INTERNAL_LIST_H */
// Local Variables:
// mode:C++
// End:
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -