本文整理汇总了C++中BST::GetSize方法的典型用法代码示例。如果您正苦于以下问题:C++ BST::GetSize方法的具体用法?C++ BST::GetSize怎么用?C++ BST::GetSize使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BST
的用法示例。
在下文中一共展示了BST::GetSize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Copy
//! Copy method. Makes a complete copy of its argument
void BST::Copy(const BST & other)
{
if (this == &other)
return;
size = other.GetSize();
if(other.root)
root = (new BSTNode(*(other.root)));
else
root=NULL;
return;
}
示例2: main
int main(){
LinkedList tList = LinkedList();
char* c = new char[3];
c[1] = '\n';
c[2] = '\0';
for(int i = 0; i < 200000; i++){
c[0] = (char)i;
tList.Insert(c, NULL);
}
tList = tList;
cout << "LinkedList contents:" << tList.GetSize() << endl;
//tList->Output(cout);
//tList->Clear();
LinkedList tNew = tList;
//tList->Clear();
cout << endl << endl << "List Copy contents:" << tNew.GetSize() << endl;
//tNew.Output(cout);
BST* tBST = new BST();
BSTNode* tBSTNode;
tBSTNode = tBST->Insert("Cool\n");
tBSTNode = tBST->Insert("Awesome\n");
tBSTNode = tBST->Insert("Test\n");
tBSTNode = tBST->Insert("1\n");
//tBST->Remove(tBSTNode);
tBSTNode = tBST->Insert("4\n");
tBSTNode = tBST->Insert("2\n");
tBSTNode = tBST->Insert("3\n");
cout << endl << endl << "BST contents:" << tBST->GetSize() << endl;
tBST->Output(cout, tBST->GetRoot());
delete tBST;
}