亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

二叉排序樹創建(遞歸)

發布時間:2020-04-08 21:38:14 來源:網絡 閱讀:1623 作者:閆寶通 欄目:編程語言
#include<stdio.h>
#include<stdlib.h>
/*
遞歸前中后遍歷
*/
typedef struct node
{
  int data;
  struct node*left;
  struct node*right;
}BTnode;
BTnode* CreateTree(BTnode* root,int x)
{
	if(!root)  //如果root結點為空,創建葉子結點
	{
		root = (BTnode*)malloc(sizeof(BTnode));
		root->data = x;
		root->left=root->right=NULL;
	}else
	{
		if(root->data>x) 
			root->left = CreateTree(root->left,x);  //遞歸調用左
		else if(root->data<x)
			root->right = CreateTree(root->right,x);//遞歸調用右
	}
	return root;
}
void Forder(BTnode*root)
{
  if(root)
  {
	  printf("%d",root->data);
	  printf("\n");
	  Forder(root->left);
	  Forder(root->right);
  }
}
void Inorder(BTnode*root)
{
  if(root)
  {
	  Inorder(root->left);
	  printf("%3d",root->data);
	  printf("\n");
	  Inorder(root->right);
  }
}
void Porder(BTnode*root)
{
  if(root)
  {
	  Porder(root->left);
	  Porder(root->right);
	  printf("%6d",root->data);
	  printf("\n");
	 
  }
}

int main(void)
{ 
 BTnode * head = NULL;
 int x;
 int n;
 int i;
 printf("請輸入n=");
 scanf("%d",&n);
 printf("請輸入二叉樹的結點data\n");
 for(i=0;i<n;i++)
 {
   scanf("%d",&x);
   head = CreateTree(head,x);
 }

printf("..................\n"); 
Forder(head);
printf("..................\n");
Inorder(head);
printf("..................\n");
Porder(head);

}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乐昌市| 郴州市| 宜都市| 格尔木市| 通化县| 靖安县| 鄢陵县| 呼玛县| 麻阳| 长沙县| 潞城市| 盐边县| 天长市| 班戈县| 恩施市| 工布江达县| 惠来县| 布尔津县| 大庆市| 镇坪县| 滦平县| 太湖县| 新兴县| 当雄县| 吉木乃县| 凤山市| 巴里| 乌苏市| 丹凤县| 长顺县| 新丰县| 调兵山市| 牙克石市| 井陉县| 金沙县| 济源市| 吉安县| 同仁县| 奉贤区| 新宾| 白城市|