Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8089123
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T19:18:45+00:00 2026-06-05T19:18:45+00:00

Lets say if I have a vector V, which has 10 elements. If I

  • 0

Lets say if I have a vector V, which has 10 elements.
If I erase the first element (at index 0) using v.erase(v.begin()) then how STL vector handle this?

Does it create another new vector and copy elements from the old vector to the new vector and deallocate the old one? Or Does it copy each element starting from index 1 and copy the element to index-1 ?

If I need to have a vector of size 100,000 at once and later I don’t use that much space, lets say I only need a vector of size 10 then does it automatically reduce the size? ( I don’t think so)

I looked online and there are only APIs and tutorials how to use STL library.
Is there any good references that I can have an idea of the implementation or complexity of STL library?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T19:18:47+00:00Added an answer on June 5, 2026 at 7:18 pm

    Actually, the implementation of vector is visible, since it’s a template, so you can look into that for details:

    iterator erase(const_iterator _Where)
        {   // erase element at where
        if (_Where._Mycont != this
            || _Where._Myptr < _Myfirst || _Mylast <= _Where._Myptr)
            _DEBUG_ERROR("vector erase iterator outside range");
        _STDEXT unchecked_copy(_Where._Myptr + 1, _Mylast, _Where._Myptr);
        _Destroy(_Mylast - 1, _Mylast);
        _Orphan_range(_Where._Myptr, _Mylast);
        --_Mylast;
        return (iterator(_Where._Myptr, this));
        }
    

    Basically, the line

    unchecked_copy(_Where._Myptr + 1, _Mylast, _Where._Myptr);
    

    does exactly what you thought – copies the following elements over (or moves them in C++11 as bames53 pointed out).

    To answer your second question, no, the capacity cannot decrease on its own.

    The complexities of the algorithms in std can be found at http://www.cplusplus.com/reference/stl/ and the implementation, as previously stated, is visible.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lets say I have a vector of int which I've prefilled with 100 elements
Lets say I have these lines of code; std::vector<int> ints; std::for_each(ints.begin(), ints.end(), [](int& val){
Lets say i have vector of vectors vector< vector<int> > bigTable; vector<int> data; data.resize(2);
Lets say we have the following code: std::vector<int> f() { std::vector<int> y; ... return
lets say I have a vector of pair<int,int> . Now I want to extract
Lets say I have vectors of different objects, say D is of type vector<
Let's say I have a vector (array, list, whatever...) V of N elements, let's
Lets say that I have got a vector like this. std::vector<a_complicated_whatever_identifier *> *something =
In a C++ application, let's say I have a window class, which has several
Lets say I have a std::vector of const std::string s. std::vector<const std::string> strs; Now

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.