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

📄 treeapp.cpp

📁 c++书籍的源代码
💻 CPP
字号:
// treeapp.cpp
#include<iostream.h>
#include"tree.h"
 int main(void)
{
  tree t;
  t.build_t(10);
  t.build_t(18);
  t.build_t(32);	
  t.build_t(16);
  t.build_t(3);
  t.build_t(77);	
  t.build_t(200);
  cout<<"前序遍历:"<<endl;
  t.preorder(t.get_r());
  cout<<endl;
  cout<<"中序遍历:"<<endl;
  t.inorder(t.get_r());
  cout<<endl;
  cout<<"后序遍历:"<<endl;
  t.postorder(t.get_r());
  cout<<endl;
  return(0);
 }

	
	

⌨️ 快捷键说明

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