本文整理汇总了C++中Lista::remover方法的典型用法代码示例。如果您正苦于以下问题:C++ Lista::remover方法的具体用法?C++ Lista::remover怎么用?C++ Lista::remover使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Lista
的用法示例。
在下文中一共展示了Lista::remover方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: _tmain
int _tmain(int argc, _TCHAR* argv[])
{
srand(time(NULL));
Lista l;
cout << "Crear una lista l con los valores, 2,3,6,7" << endl;
l.insertarFinal(new ElementoInt(2));
l.insertarFinal(new ElementoInt(3));
l.insertarFinal(new ElementoInt(6));
l.insertarFinal(new ElementoInt(7));
cout << "La lista l es: " << l << endl;
cout << endl;
cout << "Insertar el elemento 12, al inicio" << endl;
l.insertarInicio(new ElementoInt(12));
cout <<"La lista l es: "<< l << endl;
cout << endl;
cout << "Insertar el elemento 67, en la posicion 2" << endl;
l.insertar(new ElementoInt(67), 2);
cout << "La lista l es: " << l << endl;
cout << endl;
cout << "Remover el elemento del final" << endl;
l.removerFinal();
cout << "La lista l es: " << l << endl;
cout << endl;
cout << "Remover el elemento del inicio" << endl;
l.removerInicio();
cout << "La lista l es: " << l << endl;
cout << endl;
cout << "Remover el elemento de la posicion 2" << endl;
l.remover(2);
cout << "La lista l es: " << l << endl;
cout << endl;
system("pause");
return 0;
}