C + + Primer Note containers and algorithms (2)

Source: Internet
Author: User
Erase the last iterator position of the deleted element after deletion
int main () {///how to correctly delete all element loops int a[]={1,2,3,4,5,6,7,8,9};vector<int> V (a,a+6); for (vector<int>::iterator It=v.begin (); It!=v.end ();) {it=v.erase (it);} For (Vector<int>::iterator It=v.begin (); It!=v.end (); it++) {Cout<<*it<<endl;} Cout<<v.size () <<endl;getchar (); return 0;}




Reset elements and interchange elements


C.swap (C2)


C.assign (B,e)


C.assign (n,t) (iterators cannot be pointing to C)


Containers can grow automatically


Like a vector, the growth cost is bigger than the list.


Capacity () and reserve ()


Space larger than size is generally reserved, and when the memory has to be redistributed, the current capacity allocation policy is doubled
You can also assign a manual reserve (size)


Deque can be accessed randomly


P289

C + + Primer Note containers and algorithms (2)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.