📄 list.html
字号:
<tt>void pop_back()</tt></TD><TD VAlign=top> <A href="BackInsertionSequence.html">Back Insertion Sequence</A></TD><TD VAlign=top>Removes the last element.</TD></TR><TR><TD VAlign=top><tt>void swap(list&)</tt></TD><TD VAlign=top> <A href="Container.html">Container</A></TD><TD VAlign=top>Swaps the contents of two lists.</TD></TR><TR><TD VAlign=top><tt>iterator insert(iterator pos, const T& x)</tt></TD><TD VAlign=top> <A href="Sequence.html">Sequence</A></TD><TD VAlign=top>Inserts <tt>x</tt> before <tt>pos</tt>.</TD></TR><TR><TD VAlign=top><pre>template <class <A href="InputIterator.html">InputIterator</A>>void insert(iterator pos, InputIterator f, InputIterator l)<A href="#2">[2]</A></pre></TD><TD VAlign=top> <A href="Sequence.html">Sequence</A></TD><TD VAlign=top>Inserts the range <tt>[f, l)</tt> before <tt>pos</tt>.</TD></TR><TR><TD VAlign=top><pre>void insert(iterator pos, size_type n, const T& x)</pre></TD><TD VAlign=top> <A href="Sequence.html">Sequence</A></TD><TD VAlign=top>Inserts <tt>n</tt> copies of <tt>x</tt> before <tt>pos</tt>.</TD></TR><TR><TD VAlign=top><tt>iterator erase(iterator pos)</tt></TD><TD VAlign=top> <A href="Sequence.html">Sequence</A></TD><TD VAlign=top>Erases the element at position <tt>pos</tt>.</TD></TR><TR><TD VAlign=top><tt>iterator erase(iterator first, iterator last)</tt></TD><TD VAlign=top> <A href="Sequence.html">Sequence</A></TD><TD VAlign=top>Erases the range <tt>[first, last)</tt></TD></TR><TR><TD VAlign=top><tt>void clear()</tt></TD><TD VAlign=top> <A href="Sequence.html">Sequence</A></TD><TD VAlign=top>Erases all of the elements.</TD></TR><TR><TD VAlign=top><tt>void resize(n, t = T())</tt></TD><TD VAlign=top> <A href="Sequence.html">Sequence</A></TD><TD VAlign=top>Inserts or erases elements at the end such that the size becomes <tt>n</tt>.</TD></TR><TR><TD VAlign=top><tt>void splice(iterator pos, list& L)</tt></TD><TD VAlign=top><tt>list</tt></TD><TD VAlign=top>See below.</TD></TR><TR><TD VAlign=top><pre>void splice(iterator pos, list& L, iterator i)</pre></TD><TD VAlign=top><tt>list</tt></TD><TD VAlign=top>See below.</TD></TR><TR><TD VAlign=top><pre>void splice(iterator pos, list& L, iterator f, iterator l)</pre></TD><TD VAlign=top><tt>list</tt></TD><TD VAlign=top>See below.</TD></TR><TR><TD VAlign=top><tt>void remove(const T& value)</tt></TD><TD VAlign=top><tt>list</tt></TD><TD VAlign=top>See below.</TD></TR><TR><TD VAlign=top><tt>void unique()</tt></TD><TD VAlign=top><tt>list</tt></TD><TD VAlign=top>See below.</TD></TR><TR><TD VAlign=top><tt>void merge(list& L)</tt></TD><TD VAlign=top><tt>list</tt></TD><TD VAlign=top>See below.</TD></TR><TR><TD VAlign=top><tt>void sort()</tt></TD><TD VAlign=top><tt>list</tt></TD><TD VAlign=top>See below.</TD></TR><TR><TD VAlign=top><pre>bool operator==(const list&, const list&)</pre></TD><TD VAlign=top> <A href="ForwardContainer.html">Forward Container</A></TD><TD VAlign=top>Tests two lists for equality. This is a global function, not a member function.</TD></TR><TR><TD VAlign=top><pre>bool operator<(const list&, const list&)</pre></TD><TD VAlign=top> <A href="ForwardContainer.html">Forward Container</A></TD><TD VAlign=top>Lexicographical comparison. This is a global function, not a member function.</TD></tr></table><h3>New members</h3>These members are not defined in the <A href="ReversibleContainer.html">Reversible Container</A>, <A href="FrontInsertionSequence.html">Front Insertion Sequence</A>, and<A href="BackInsertionSequence.html">Back Insertion Sequence</A>requirements, but are specific to <tt>list</tt>.<Table border><TR><TH>Function</TH><TH>Description</TH></TR><TR><TD VAlign=top><pre>void splice(iterator position, list<T, Alloc>& x);</pre></TD><TD VAlign=top><tt>position</tt> must be a valid iterator in <tt>*this</tt>, and <tt>x</tt> must be a list that is distinct from <tt>*this</tt>. (That is, it is required that <tt>&x != this</tt>.) All of the elements of <tt>x</tt> are inserted before <tt>position</tt> and removed from <tt>x</tt>. All iterators remain valid, including iterators that point to elements of <tt>x</tt>. <A href="#3">[3]</A> This function is constant time. </TD></TR><TR><TD VAlign=top><pre> void splice(iterator position, list<T, Alloc>& x, iterator i);</pre></TD><TD VAlign=top><tt>position</tt> must be a valid iterator in <tt>*this</tt>, and <tt>i</tt> must be a dereferenceable iterator in <tt>x</tt>. <tt>Splice</tt> moves the element pointed to by <tt>i</tt> from <tt>x</tt> to <tt>*this</tt>, inserting it before <tt>position</tt>. All iterators remain valid, including iterators that point to elements of <tt>x</tt>. <A href="#3">[3]</A> If <tt>position == i</tt> or <tt>position == ++i</tt>, this function is a null operation. This function is constant time. </TD></TR><TR><TD VAlign=top><pre> void splice(iterator position, list<T, Alloc>& x, iterator f, iterator l);</pre></TD><TD VAlign=top><tt>position</tt> must be a valid iterator in <tt>*this</tt>, and <tt>[first, last)</tt> must be a valid range in <tt>x</tt>. <tt>position</tt> may not be an iterator in the range <tt>[first, last)</tt>. <tt>Splice</tt> moves the elements in <tt>[first, last)</tt> from <tt>x</tt> to <tt>*this</tt>, inserting them before <tt>position</tt>. All iterators remain valid, including iterators that point to elements of <tt>x</tt>. <A href="#3">[3]</A> This function is constant time. </TD></TR><TR><TD VAlign=top><tt>void remove(const T& val);</tt></TD><TD VAlign=top>Removes all elements that compare equal to <tt>val</tt>. The relative order of elements that are not removed is unchanged, and iterators to elements that are not removed remain valid. This function is linear time: it performs exactly <tt>size()</tt> comparisons for equality.</TD></TR><TR><TD VAlign=top><pre>template<class <A href="Predicate.html">Predicate</A>> void remove_if(<A href="Predicate.html">Predicate</A> p); <A href="#4">[4]</A></pre></TD><TD VAlign=top>Removes all elements <tt>*i</tt> such that <tt>p(*i)</tt> is true. The relative order of elements that are not removed is unchanged, and iterators to elements that are not removed remain valid. This function is linear time: it performs exactly <tt>size()</tt> applications of <tt>p</tt>.</TD></TR><TR><TD VAlign=top><tt>void unique();</tt></TD><TD VAlign=top>Removes all but the first element in every consecutive group of equal elements. The relative order of elements that are not removed is unchanged, and iterators to elements that are not removed remain valid. This function is linear time: it performs exactly <tt>size() - 1</tt> comparisons for equality.</TD></TR><TR><TD VAlign=top><pre>template<class <A href="BinaryPredicate.html">BinaryPredicate</A>>void unique(<A href="BinaryPredicate.html">BinaryPredicate</A> p); <A href="#4">[4]</A></pre></TD><TD VAlign=top>Removes all but the first element in every consecutive group of equivalent elements, where two elements <tt>*i</tt> and <tt>*j</tt> are considered equivalent if <tt>p(*i, *j)</tt> is true. The relative order of elements that are not removed is unchanged, and iterators to elements that are not removed remain valid. This function is linear time: it performs exactly <tt>size() - 1</tt> comparisons for equality. </TD></TR><TR><TD VAlign=top><tt>void merge(list<T, Alloc>& x);</tt></TD><TD VAlign=top>Both <tt>*this</tt> and <tt>x</tt> must be sorted according to <tt>operator<</tt>, and they must be distinct. (That is, it is required that <tt>&x != this</tt>.) This function removes all of <tt>x</tt>'s elements and inserts them in order into <tt>*this</tt>. The merge is stable; that is, if an element from <tt>*this</tt> is equivalent to one from <tt>x</tt>, then the element from <tt>*this</tt> will precede the one from <tt>x</tt>. All iterators to elements in <tt>*this</tt> and <tt>x</tt> remain valid. This function is linear time: it performs at most <tt>size() + x.size() - 1</tt> comparisons.</TD></TR><TR><TD VAlign=top><pre>template<class <A href="BinaryPredicate.html">BinaryPredicate</A>>void merge(list<T, Alloc>& x, BinaryPredicate Comp); <A href="#4">[4]</A></pre></TD><TD VAlign=top><tt>Comp</tt> must be a comparison function that induces a strict weak ordering (as defined in the <A href="LessThanComparable.html">LessThan Comparable</A> requirements) on objects of type <tt>T</tt>, and both <tt>*this</tt> and <tt>x</tt> must be sorted according to that ordering. The lists <tt>x</tt> and <tt>*this</tt> must be distinct. (That is, it is required that <tt>&x != this</tt>.) This function removes all of <tt>x</tt>'s elements and inserts them in order into <tt>*this</tt>. The merge is stable; that is, if an element from <tt>*this</tt> is equivalent to one from <tt>x</tt>, then the element from <tt>*this</tt> will precede the one from <tt>x</tt>. All iterators to elements in <tt>*this</tt> and <tt>x</tt> remain valid. This function is linear time: it performs at most <tt>size() + x.size() - 1</tt> applications of <tt>Comp</tt>. </TD></TR><TR><TD VAlign=top><tt>void reverse();</tt></TD><TD VAlign=top>Reverses the order of elements in the list. All iterators remain valid and continue to point to the same elements. <A href="#5">[5]</A> This function is linear time.</TD></TR><TR><TD VAlign=top><tt>void sort();</tt></TD><TD VAlign=top>Sorts <tt>*this</tt> according to <tt>operator<</tt>. The sort is stable, that is, the relative order of equivalent elements is preserved. All iterators remain valid and continue to point to the same elements. <A href="#6">[6]</A> The number of comparisons is approximately <tt>N log N</tt>, where <tt>N</tt> is the <tt>list</tt>'s size.</TD></TR><TR><TD VAlign=top><pre>template<class <A href="BinaryPredicate.html">BinaryPredicate</A>>void sort(BinaryPredicate comp); <A href="#4">[4]</A></pre></TD><TD VAlign=top><tt>Comp</tt> must be a comparison function that induces a strict weak ordering (as defined in the <A href="LessThanComparable.html">LessThan Comparable</A> requirements on objects of type <tt>T</tt>. This function sorts the list <tt>*this</tt> according to <tt>Comp</tt>. The sort is stable, that is, the relative order of equivalent elements is preserved. All iterators remain valid and continue to point to the same elements. <A href="#6">[6]</A> The number of comparisons is approximately <tt>N log N</tt>, where <tt>N</tt> is the <tt>list</tt>'s size.</TD></tr></table><h3>Notes</h3><P><A name="1">[1]</A>A comparison with <tt><A href="Vector.html">vector</A></tt> isinstructive. Suppose that <tt>i</tt> is a valid<tt><A href="Vector.html">vector</A><T>::iterator</tt>. If an elementis inserted or removed in a position that precedes <tt>i</tt>, thenthis operation will either result in <tt>i</tt> pointing to adifferent element than it did before, or else it will invalidate<tt>i</tt> entirely. (A<tt><A href="Vector.html">vector</A><T>::iterator</tt> will beinvalidated, for example, if an insertion requires a reallocation.)However, suppose that <tt>i</tt> and <tt>j</tt> are both iteratorsinto a <A href="Vector.html">vector</A>, and there exists some integer<tt>n</tt> such that <tt>i == j + n</tt>. In that case, even ifelements are inserted into the vector and <tt>i</tt> and <tt>j</tt>point to different elements, the relation between the two iteratorswill still hold. A <tt>list</tt> is exactly the opposite: iteratorswill not be invalidated, and will not be made to point to differentelements, but, for <tt>list</tt> iterators, the predecessor/successorrelationship is not invariant.<P><A name="2">[2]</A>This member function relies on <i>member template</i> functions, whichat present (early 1998) are not supported by all compilers. If yourcompiler supports member templates, you can call this function withany type of <A href="InputIterator.html">input iterator</A>. If yourcompiler does not yet support member templates, though, then thearguments must either be of type <tt>const value_type*</tt> or of type<tt>list::const_iterator</tt>.<P><A name="3">[3]</A>A similar property holds for all versions of <tt>insert()</tt> and<tt>erase()</tt>. <tt>List<T, Alloc>::insert()</tt> neverinvalidates any iterators, and <tt>list<T, Alloc>::erase()</tt>only invalidates iterators pointing to the elements that are actuallybeing erased.<P><A name="4">[4]</A>This member function relies on <i>member template</i> functions, whichat present (early 1998) are not supported by all compilers.You can only use this member function if your compiler supportsmember templates.<P><A name="5">[5]</A>If <tt>L</tt> is a list, note that <tt>L.reverse()</tt> and <tt><A href="reverse.html">reverse</A>(L.begin(), L.end())</tt> are bothcorrect ways of reversing the list. They differ in that<tt>L.reverse()</tt> will preserve the value that each iterator into<tt>L</tt> points to but will not preserve the iterators'predecessor/successor relationships, while<tt><A href="reverse.html">reverse</A>(L.begin(), L.end())</tt> will notpreserve the value that each iterator points to but will preserve theiterators' predecessor/successor relationships. Note also that thealgorithm <tt><A href="reverse.html">reverse</A>(L.begin(), L.end())</tt> will use <tt>T</tt>'s assignment operator, while the member function <tt>L.reverse()</tt> will not.<P><A name="6">[6]</A>The <tt><A href="sort.html">sort</A></tt> algorithm works only for <A href="RandomAccessIterator.html">random access iterators</A>. Inprinciple, however, it would be possible to write a sort algorithmthat also accepted <A href="BidirectionalIterator.html">bidirectional iterators</A>.Even if there were such a version of<tt><A href="sort.html">sort</A></tt>, it would still be useful for<tt>list</tt> to have a <tt>sort</tt> member function. That is,<tt>sort</tt> is provided as a member function not only for the sakeof efficiency, but also because of the property that it preserves thevalues that list iterators point to.<h3>See also</h3><A href="BidirectionalIterator.html">Bidirectional Iterator</A>,<A href="ReversibleContainer.html">Reversible Container</A>,<A href="Sequence.html">Sequence</A>,<tt><A href="Slist.html">slist</A></tt><tt><A href="Vector.html">vector</A></tt>.<!-- start footer --><!-- Footer Begins --><STYLE TYPE="text/css"><!--TD.footer, TD.footer A{ font-family: Arial, helvetica, sans-serif; font-size: 8pt;}A.home {font-family: Arial, helvetica, sans-serif;}--></STYLE><P><A CLASS="home" HREF="index.html">STL Home</A><P><TABLE WIDTH="600" CELLPADDING="0" CELLPADDING="0" BORDER="0"> <TR> <TD ALIGN="RIGHT" CLASS="footer"><A HREF="/company_info/terms.html" TARGET="_top">terms of use</A> | <A HREF="/company_info/privacy.html" TARGET="_top">privacy policy</A></TD> <TD ALIGN="CENTER" CLASS="footer"> | </TD> <TD ALIGN="LEFT" CLASS="footer"><A HREF="/cgi-bin/feedback/" TARGET="_top">contact us</A></TD> </TR><TR> <TD ALIGN="RIGHT" CLASS="footer">Copyright © 1993-2003 Silicon Graphics, Inc. All rights reserved.</TD> <TD ALIGN="CENTER" CLASS="footer"> | </TD> <TD ALIGN="LEFT" CLASS="footer"><A HREF="/company_info/trademarks/" TARGET="_top">Trademark Information</A></TD> </TR></TABLE><!-- Footer Ends --><!-- end footer --><P></BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -