本文整理汇总了C++中AVL::sacar方法的典型用法代码示例。如果您正苦于以下问题:C++ AVL::sacar方法的具体用法?C++ AVL::sacar怎么用?C++ AVL::sacar使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AVL
的用法示例。
在下文中一共展示了AVL::sacar方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
/**** Programa Principal ******************************************************/
int main(){
//Variables locales
AVL<int> v;
int e;
int op=0;
while (op!=12)
{
cout<<"________________________________________________________________________________"<<endl
<<" ADT Arbol AVL"<<endl
<<"________________________________________________________________________________"<<endl<<endl
<<" ___________________________________________________________"<<endl
<<" | [ 1 ] Meter elemento |"<<endl
<<" | [ 2 ] Sacar elemento |"<<endl
<<" | [ 3 ] Inorden |"<<endl
<<" | [ 4 ] Preorden |"<<endl
<<" | [ 5 ] Postorden |"<<endl
<<" | [ 6 ] Inorden Inv. |"<<endl
<<" | [ 7 ] Preorden Inv |"<<endl
<<" | [ 8 ] Postorden Inv |"<<endl
<<" | [ 9 ] Hijos |"<<endl
<<" | [ 10 ] Camino |"<<endl
<<" | [ 11 ] Altura |"<<endl
<<" |___________________________________________________________|"<<endl<<endl
<<" Opcion a Elegir: ";
cin>>op;
system("cls");
if (op==1)
{
cout<<"Dame un numero a insertar ";
cin>>e;
v.meter(e);
system("pause");
system("cls");
}
if (op==2)
{
cout<<"Dame un numero a sacar ";
cin>>e;
v.sacar(e);
system("pause");
system("cls");
}