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

📄 bitrthiteratortest.cpp

📁 数据结构c++-书的一些源代码
💻 CPP
字号:
#include <iostream.h>

#include "BiTrThNode.h"
#include "BiTreeThExample.h"
#include "InThreadIterator.h"

void main(void)
{
	BiTrThNode<char> *root2;

	MakeCharThTree(root2, 2);
	InThreadIterator<char> threadIter(root2);
	threadIter.CreatInThread();
	
	cout << "二叉树的中序正向遍历序列为:";
	for(threadIter.First(); !threadIter.EndOfNext(); threadIter.Next())
		cout << threadIter.Data() << "   ";
	cout << endl << "二叉树的中序反向遍历序列为:";
	for(threadIter.Last(); !threadIter.EndOfPrior(); threadIter.Prior())
		cout << threadIter.Data() << "   ";
}

⌨️ 快捷键说明

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