📄 inorder.h
字号:
#include<iostream.h>
#include"treenode.h"
#include"stack.h"
template<class T>
void InorderVisit(TreeNode<T> *t)
{
Stack<TreeNode<T> *> s;
TreeNode<T> *current=t;
while(current!=NULL || !s.StackEmpty())
if(current!=NULL)
{
s.Push(current);
current=current->Left();
}
else
{
current=s.Pop();
cout<<current->data<<" ";
current=current->Right();
}
cout<<endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -