二叉树前序中序后序非递归写法

本文详细介绍了二叉树的前序、中序和后序遍历算法,并通过C++代码实现,深入解析了每种遍历方式的原理与过程。通过具体的二叉树实例演示了遍历算法的应用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

在这里插入图片描述

#include <iostream>
#include <stack>
using namespace std;


struct TreeNode
{
      char val;
      TreeNode *left;
      TreeNode *right;
      TreeNode(char x):val(x),left(NULL),right(NULL)
	  {
	  
	  }
};


//前序
void preorder(TreeNode* root)
{
      if(root==NULL)
           cout<<"The tree is empty!"<<endl;
      stack<TreeNode*> s;
      while(root||!s.empty())
	  {
              while(root)
			  {
                     cout<<root->val<<endl;
                     s.push(root);
                     root=root->left;
              } 
              root=s.top();
              s.pop();
              root=root->right; 
      }
}



//中序
void midorder(TreeNode* root)
{ 
	if(root==NULL)
	{
        cout<<"The tree is empty!"<<endl;	
    }
        stack<TreeNode*> s;
        while(root||!s.empty()){
                while(root){
                s.push(root);
                root=root->left; 
                }
                root=s.top();
                s.pop();
                cout<<root->val;
                root=root->right;
        }

}




void postorder(TreeNode* root){
    if(root==NULL)
        cout<<"empty!"<<endl;
    else{
        stack<TreeNode*> s;
        stack<int> v;
        //跟中序一样,把所以的左子树先放到栈里,这边多了一个标志而已
        while(root)
        {
            s.push(root);
            v.push(0);
            root=root->left;
        }

        while(!s.empty()){
            root=s.top();
            while(root->right&&v.top()==0)  //遍历所以的右子树
             {
                v.pop();
                v.push(1);
                root=root->right;
                s.push(root)
                v.push(0);
                while(root->left)
                {
                     s.push(root);
                     v.push(0);
                     root=root->left;
                }
           }
           root=s.top();
           cout<<root->val;
           s.pop();
           v.pop();
        }
    }
}



int main()
{
		TreeNode G('G');
		TreeNode H('H');
		TreeNode D('D');
		TreeNode B('B');
		TreeNode I('I' );
		TreeNode E('E');
		TreeNode F('F' );
		TreeNode C('C');
		TreeNode A('A');
		A.left = &B;
		A.right = &C;
		B.left = &D;
		D.left = &G;
		D.right = &H;
		C.left = &E;
		C.right = &F;
		E.right = &I;
		//preorder(&A);
		//midorder(&A);
		postorder(&A);
	system("pause");
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值