二叉樹的遍歷(遞歸方法)

#include <iostream>
#include <stdlib.h>
using namespace std;

typedef struct np{
 int date;
 struct np *left,*right;
} node;
node *create(void)
{
 return ((node*)malloc(sizeof(node)));
}
node *t(node *a,int d)/*建立二叉樹*/
{
   if (a==NULL) {
    a=create();
    a->left =a->right =NULL;
    a->date=d;
   }
   else if (d>=a->date) {
   a->right =t(a->right,d);
  }
   else if (d<a->date) {
   a->left =t(a->left ,d);
  }
   return a;
}
void prt(node *r)
{
 if(r) {
  cout<<r->date<<" ";
  prt(r->left );
  prt(r->right );
 }
}
void mid(node *r)
{
  if(r)
 {
    mid(r->left);
    cout<<r->date<<" ";
    mid(r->right);
 }
}
void beh(node *r)
{
   if(r)
 {
     beh(r->left);
     beh(r->right);
     cout<<r->date<<" ";
 }
}

int main(void)
{
 node *bst=NULL;
 int i;

 cout<<"從鍵盤輸入整數,以-24結束輸入:";
 while (scanf("%d",&i),i!=-24)
 {
  bst=t(bst,i);      /*生成二叉排序數*/
 }
 cout<<"前序遍歷:";
 prt(bst);
 cout<<endl;
 cout<<"中序遍歷:";
 mid(bst);
 cout<<endl;
 cout<<"後序遍歷:";
 beh(bst);
 cout<<endl;
 system("pause");
 return 0;
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章