无需递归的有序树遍历的C ++程序
如果按顺序遍历二叉树,则首先访问左子树,然后访问根,然后访问右子树。以in_order遍历的升序输出键。这是用于无递归顺序树遍历的C++程序。
算法
Begin
Function inOrder():
Declare a stack s.
Declare the current node as root.
While current node is not null and stack is not empty do
While current node is not null do
Push the current node on the top of the stack
Make the left child node as current node
Point the current node at the top of the stack.
Pop the top most node from the stack
Print the current node.
Make the right node as current node.
Insert some elements at root, left node and right node in stack.
Call the inOrder() function to traverse the tree.
End.范例程式码
#include<bits/stdc++.h>
using namespace std;
struct n {
int d;
struct n* l;
struct n* r;
n (int d) {
this->d = d;
l = r = NULL;
}
};
void inOrder(struct n *root) {
stack<n *> s;
n *current = root;
while (current != NULL || s.empty() == false) {
while (current != NULL) {
s.push(current);
current = current->l;
}
current = s.top();
s.pop();
cout << current->d << " ";
current = current->r;
}
}
int main() {
struct n *root = new n(7);
root->l = new n(6);
root->r = new n(2);
root->l->l = new n(1);
root->l->r = new n(9);
inOrder(root);
return 0;
}输出结果
1 6 9 7 2
热门推荐
10 诗词送行祝福语大全简短
11 新房开工吉日祝福语简短
12 50多岁生日简短祝福语
13 安徽疫情祝福语简短英语
14 农民朋友发财祝福语简短
15 对生活祝福语简短精辟
16 搬家词简短祝福语朋友
17 女神结婚快乐祝福语简短
18 文学短句祝福语大全简短