std::list::insert
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| iterator insert( iterator pos, const T& value ); iterator insert( const_iterator pos, const T& value ); |
(1) | (hasta C + +11) (ya que C + +11) |
| iterator insert( const_iterator pos, T&& value ); |
(2) | (ya que C + +11) |
| void insert( iterator pos, size_type count, const T& value ); iterator insert( const_iterator pos, size_type count, const T& value ); |
(3) | (hasta C + +11) (ya que C + +11) |
| template< class InputIt > void insert( iterator pos, InputIt first, InputIt last); |
(4) | (hasta C + +11) (ya que C + +11) |
| iterator insert( const_iterator pos, std::initializer_list<T> ilist ); |
(5) | (ya que C + +11) |
Inserta elementos a la posición especificada en el envase .
1-2) Original:
Inserts elements to specified position in the container.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
insertos
3) value antes del elemento apuntado por posOriginal:
inserts
value before the element pointed to by posThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
insertos
4) count copias del value antes del elemento apuntado por posOriginal:
inserts
count copies of the value before the element pointed to by posThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
elementos insertos de
5) [first, last) rango antes del elemento apuntado por posOriginal:
inserts elements from range
[first, last) before the element pointed to by posThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
elementos insertos de la lista de inicializador
ilist .Original:
inserts elements from initializer list
ilist.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
No iterators or references are invalidated.
Contenido |
[editar] Parámetros
| pos | - | elemento antes de que el contenido se inserta
Original: element before which the content will be inserted The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| value | - | elemento de valor que se inserta
Original: element value to insert The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| first, last | - | la gama de elementos a insertar, no puede ser iteradores en el recipiente para que se insertan se llama
Original: the range of elements to insert, can't be iterators into container for which insert is called The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| ilist | - | lista de inicializadores para insertar los valores de
Original: initializer list to insert the values from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| Type requirements | ||
-InputIt must meet the requirements of InputIterator.
| ||
[editar] Valor de retorno
1-2)iterador que señala a la
3) value insertadoOriginal:
iterator pointing to the inserted
valueThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
iterador que señala al primer elemento insertado, o si
4) pos count==0 .Original:
iterator pointing to the first element inserted, or
pos if count==0.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
iterador que señala al primer elemento insertado, o si
5) pos first==last .Original:
iterator pointing to the first element inserted, or
pos if first==last.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
iterador que señala al primer elemento insertado, o si
pos ilist está vacío .Original:
iterator pointing to the first element inserted, or
pos if ilist is empty.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Complejidad
1-2) Constant.
3) Linear in count
4) Linear in std::distance(first, last)
5) Linear in ilist.size()
[editar] Ver también
| (C++11) |
constructs element in-place (miembro público función) |
| inserciones elementos al principio Original: inserts elements to the beginning The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (miembro público función) | |
| agrega elementos al final Original: adds elements to the end The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (miembro público función) | |