本文整理汇总了C++中BST::del方法的典型用法代码示例。如果您正苦于以下问题:C++ BST::del方法的具体用法?C++ BST::del怎么用?C++ BST::del使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BST
的用法示例。
在下文中一共展示了BST::del方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main()
{
BST test;
int n;
cin >> n;
for (int i=0; i<n; i++)
{
int x;
cin >> x;
test.add(x);
}
cout << test.getmin();
cout << test.getmax();
cout << test.height();
test.prevorder();
test.inorder();
test.postorder();
int x;
cin >> x;
test.del(x);
//test.inorder();
cout << test.size() << endl;
for (int i=0; i<3; i++)
{
cin >> x;
cout << test.rank(x) << endl;
}
}
示例2: main
int main() {
srand((unsigned)time(NULL));
const int size = 1000000;
int* arr = new int[size];
for(int i = 0; i < size; i++)
arr[i] = rand() % 1000000 + 1;
BST<int>* ex = new BST<int>(arr, size);
//ex->dump();
cout << ex->search(2) << endl;
cout << ex->search(5) << endl;
ex->del(7);
//ex->dump();
delete arr;
delete ex;
return 0;
}