请设计求二叉树中分支结点个数的算法。(二叉树采用二叉链表存储,分别实现递归算法和非递归算法)

详细的算法程序步骤!能实现的采纳再加100在线等急求!!!... 详细的算法 程序步骤!能实现的采纳再加100在线等 急求!!! 展开
 我来答
Soucula
推荐于2017-09-12 · TA获得超过3091个赞
知道小有建树答主
回答量:744
采纳率:93%
帮助的人:67.7万
展开全部
1. 递归算法
void getBranchNum(TreeNode *root)
{
if (root == NULL)
return 0;
if (root->left != NULL || root->right != NULL)
return 1 + getBranchNum(root->left) + getBranchNum(root->right);
return 0;
}
2. 非递归算法:
typedef struct Link
{
TreeNode * root;
struct Link * next;
}Queue;

int getBranchNum(TreeNode *root)
{
Queue *head = (Queue *)malloc(sizeof(Queue));
Queue *tail = head;
head->root = root;
head->next = NULL;
int nNum = 0;

while(head != NULL)
{
Queue *temp;
int degree = 0;
if (head->root->left != NULL)
{
temp = (Queue *)malloc(sizeof(Queue));
temp->root = head->root->left;
temp->next = NULL;
tail->next = temp;
tail = temp;
degree++;
}

if (head->root->right != NULL)
{
temp = (Queue *)malloc(sizeof(Queue));
temp->root = head->root->right;
temp->next = NULL;
tail->next = temp;
tail = temp;
degree++;
}

if (degree > 0)
nNum ++;

temp = head;
head = head->next;
free(temp);
}
return nNum;
}
追问
你好  还有些问题想问你,能加你求求吗
追答
Soucula@126.com
你发我邮箱吧
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式