Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 20, 2019 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/f52ed955e96bf4f819c23c5543cc8231 to your computer and use it in GitHub Desktop.
Save parzibyte/f52ed955e96bf4f819c23c5543cc8231 to your computer and use it in GitHub Desktop.
std::vector<int> numeros;
// Insertar al inicio
numeros.insert(numeros.begin(), 100);
// Insertar en la posición 1
numeros.insert(numeros.begin() + 1, 500);
// Insertar en la penúltima posición
numeros.insert(numeros.end() - 1, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment