资源简介
孩子兄弟链表法表示二叉树C++
孩子兄弟链表法表示二叉树C++
代码片段和文件信息
#include
using namespace std;
#include “Tree.h“
void TreeTest();
int main()
{
TreeTest();
system(“pause“);
}
void TreeTest()
{
Tree tree;
char a[] = {‘a‘ ‘b‘ ‘c‘ ‘d‘ ‘e‘ ‘f‘ ‘g‘ ‘h‘ ‘i‘ ‘j‘ ‘k‘ ‘l‘ ‘m‘ ‘n‘};
for(int i=0;i<14;i++)
tree.AddTreeNode(a[i]);
cout<<“Original char array:“< for(int i=0;i<14;i++)
cout<
cout<<“\n\n前序遍历“< tree.ShowNLR();
cout<<“\n\n后序遍历“< tree.ShowLRN();
cout<<“\n\n层次遍历“< tree.ShowLevel();
cout<
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-10-29 16:12 ChildSiblingTree\
文件 3335 2011-10-29 16:12 ChildSiblingTree\ChildSiblingTree.vcxproj
文件 1147 2011-10-29 16:12 ChildSiblingTree\ChildSiblingTree.vcxproj.filters
文件 143 2011-10-29 14:51 ChildSiblingTree\ChildSiblingTree.vcxproj.user
目录 0 2011-10-29 17:12 ChildSiblingTree\Debug\
文件 381 2011-10-29 17:12 ChildSiblingTree\Debug\ChildSiblingTree.exe.intermediate.manifest
文件 99 2011-10-29 17:12 ChildSiblingTree\Debug\ChildSiblingTree.lastbuildstate
文件 2621 2011-10-29 17:12 ChildSiblingTree\Debug\ChildSiblingTree.log
文件 1390 2011-10-29 17:12 ChildSiblingTree\Debug\cl.command.1.tlog
文件 22622 2011-10-29 17:12 ChildSiblingTree\Debug\CL.read.1.tlog
文件 1782 2011-10-29 17:12 ChildSiblingTree\Debug\CL.write.1.tlog
文件 1680 2011-10-29 17:12 ChildSiblingTree\Debug\li
文件 3302 2011-10-29 17:12 ChildSiblingTree\Debug\li
文件 1132 2011-10-29 17:12 ChildSiblingTree\Debug\li
文件 56591 2011-10-29 17:09 ChildSiblingTree\Debug\main.obj
文件 620 2011-10-29 17:12 ChildSiblingTree\Debug\mt.command.1.tlog
文件 898 2011-10-29 17:12 ChildSiblingTree\Debug\mt.read.1.tlog
文件 426 2011-10-29 17:12 ChildSiblingTree\Debug\mt.write.1.tlog
文件 150186 2011-10-29 17:12 ChildSiblingTree\Debug\Tree.obj
文件 347136 2011-10-29 17:12 ChildSiblingTree\Debug\vc100.idb
文件 266240 2011-10-29 17:12 ChildSiblingTree\Debug\vc100.pdb
文件 556 2011-10-29 17:09 ChildSiblingTree\main.cpp
文件 1508 2011-10-29 17:12 ChildSiblingTree\Tree.cpp
文件 601 2011-10-29 16:14 ChildSiblingTree\Tree.h
- 上一篇:VC生成二维码sample
- 下一篇:mfc的odbc数据库连接方法
相关资源
- 类似QQ截图的MFC截图软件C++源码
- C++中文分词系统代码
- C++、A星算法(很不错)
- c++ c 数据结构 课程设计 学生成绩管理
- c++ primer 经典课件
- ini配置文件读写C/C++版本
- C++ Builder 2010 序列号+注册机(破解补
- 简易学生管理系统(C++)
- R树C++代码实现
- c++学习之动态内存运算符
- c++变量引用的学习用例
- 基于c++的格斗游戏
- sha1(C++实现)
- 基于神经网络的车牌识别系统//VC++毕
- 数字水印c++实现
- 用C#和C++实现的进程调度算法程序操作
- 二叉树成绩管理系统
- 约瑟夫环问题 循环队列实现C++源码
- 随机网络拓扑生成算法c++实现waxman算
- C++ Primer中文版第五版带目录及源码
- 回溯法 0-1背包问题 C++
- c++api中文版
- c++实现的端口映射
- QR分解算法的纯c++代码
- 基于c++的udp传输,传送超过10M的文件
- MFC程序设计-画图板
- 操作系统实验--电梯调度 VC++实现
- C++实现排课程序
- VS2010 C++ ADO读取ACCESS 数据库
- 东北大学c++实验报告214492
评论
共有 条评论