Skip to content

Instantly share code, notes, and snippets.

@mym0404
Created May 2, 2022 16:01
Show Gist options
  • Save mym0404/6260ef15f41abc719541dd531bb537a7 to your computer and use it in GitHub Desktop.
Save mym0404/6260ef15f41abc719541dd531bb537a7 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <vector>
using namespace std;
signed main() {
vector<int> arr{0, 1, 2, 3, 4, 5};
arr.push_back(6); // O(1)
arr.pop_back(); // O(1)
arr.insert(arr.begin() + 3, 6);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment