This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/ex9/ex9.cpp
2021-12-03 00:09:43 +08:00

12 lines
165 B
C++

#include <iostream>
#include "BST.hpp"
int main()
{
printf("初始化\n");
BST bst(31);
printf("层次遍历\n");
bst.trav_level();
return 0;
}