bst.cpp

来自「一本全面剖析C++数据结构算法的书籍」· C++ 代码 · 共 44 行

CPP
44
字号
// test binary search tree class#include <iostream.h>#include "bst.h"#include "datatype.h"BSTree<DataType,int> y;void main(void){   DataType q;   q.key = 1; q.ID = 'a';   y.Insert(q);   q.key = 6; q.ID = 'b';   y.Insert(q);   q.key = 4; q.ID = 'c';   y.Insert(q);   q.key = 8; q.ID = 'd';   y.Insert(q);   cout << "Elements in ascending order are" << endl;   y.Ascend();   DataType s;   y.Delete(4,s);   cout << "Delete of 4 succeeds " << endl;   cout << s.key << ' ' << s.ID << endl;   cout << "Elements in ascending order are" << endl;   y.Ascend();   y.Delete(8,s);   cout << "Delete of 8 succeeds " << endl;   cout << s.key << ' ' << s.ID << endl;   cout << "Elements in ascending order are" << endl;   y.Ascend();   y.Delete(6,s);   cout << "Delete of 6 succeeds " << endl;   cout << s.key << ' ' << s.ID << endl;   cout << "Elements in ascending order are" << endl;   y.Ascend();   try {y.Delete(6,s);}   catch (BadInput)      {cout << "Delete of 6 fails " << endl;}   cout << "Elements in ascending order are" << endl;   y.Ascend();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?