📄 binarysorttree.cpp
字号:
// binarySortTree.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include"BinarySortTree.h"
#include<iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
BinarySortTree<int> intBinarySortTree;
int arr[20]={10,8,11,3,23,3,2,5,67,45,3,2,12,23,0,9,123,453,13,6};
for(int i=0;i<20;i++)
intBinarySortTree.insert(arr[i]);
intBinarySortTree.show();
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -