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

📄 preorder.h

📁 该程序完成对二叉树的非递归的前序遍历
💻 H
字号:
#include<iostream.h>
#include"treenode.h"
#include"stack.h"

template<class T>
void PreorderVisit(TreeNode<T> *t)
{
	Stack<TreeNode<T> *> s;
	TreeNode<T> *p;
	p=t;
	if(p!=NULL)
		s.Push(p);
	while(!s.StackEmpty())
	{
		p=s.Pop();
		cout<<p->data<<" ";
		if(p->Right()!=NULL)
			s.Push(p->Right());
		if(p->Left()!=NULL)
			s.Push(p->Left());
	}
}

⌨️ 快捷键说明

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