⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 binarysorttree.cpp

📁 二叉排序树 算法 数据结构 希望对初学者有所帮助 c++源程序
💻 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 + -