91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

二叉排序樹創建(遞歸)

發布時間: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

仁寿县| 方正县| 微山县| 三亚市| 通辽市| 大宁县| 若羌县| 綦江县| 福鼎市| 定西市| 东至县| 景宁| 东平县| 永昌县| 比如县| 黎城县| 新邵县| 尼木县| 浦东新区| 定日县| 温宿县| 准格尔旗| 新兴县| 宜宾市| 衡南县| 荆门市| 贺州市| 汝城县| 蓬莱市| 巴林左旗| 阿克苏市| 西青区| 白水县| 宁津县| 土默特右旗| 聂荣县| 泰和县| 肥乡县| 临澧县| 宜兰市| 禹城市|