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

📄 main.cpp

📁 这里我在学习数据结构时的练习,主要是二叉排序树的基本操作
💻 CPP
字号:
// BinSortTree.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "BinSortTree.h"

// 本程序是二叉排序树的操作,

int main(int argc, char* argv[])
{
	int a[]={4,58,65,24,96,56,7};

	BinSortTree tree(a,sizeof(a)/sizeof(a[0]));
	tree.print();
	 
	return 0;
}

⌨️ 快捷键说明

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