preorder.h
来自「该程序完成对二叉树的非递归的前序遍历」· C头文件 代码 · 共 23 行
H
23 行
#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 + =
减小字号Ctrl + -
显示快捷键?