我是靠谱客的博主 无奈彩虹,最近开发中收集的这篇文章主要介绍求二叉树中双分支结点的个数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include<iostream>
#define N 31

using namespace std;

char str[] = "ab#d##c#e##";
int i = -1;

typedef struct node
{
	struct node *leftChild;
	struct node *rightChild;
	char data;
}BiTreeNode, *BiTree;

//生成一个结点
BiTreeNode *createNode(int i)
{
	BiTreeNode * q = new BiTreeNode;
	q->leftChild = NULL;
	q->rightChild = NULL;
	q->data = i;

	return q;
}

BiTree createBiTree1()
{
	BiTreeNode *p[N] = {NULL};
	int i;
	for(i = 0; i < N; i++)
		p[i] = createNode(i + 1);

	// 把结点连接成树
	for(i = 0; i < N/2; i++)
	{
		p[i]->leftChild = p[i * 2 + 1];
		p[i]->rightChild = p[i * 2 + 2];
	}

	return p[0];
}

void createBiTree2(BiTree &T)
{
	i++;
	char c;
	if(str[i] && '#' == (c = str[i]))
		T = NULL;
	else
	{
		T = new BiTreeNode;
		T->data = c;
		createBiTree2(T->leftChild);
		createBiTree2(T->rightChild);
	}
}

int getdoubleBranchNode(BiTree T)
{
	if(NULL == T)
		return 0;

	if(NULL == T->leftChild && NULL == T->rightChild)
		return 0;

	if(NULL != T->leftChild && NULL != T->rightChild)
		return 1 + getdoubleBranchNode(T->leftChild) + getdoubleBranchNode(T->rightChild);
	
	return getdoubleBranchNode(T->leftChild) + getdoubleBranchNode(T->rightChild);

}

int main()
{
	BiTree T1;
	T1 = createBiTree1();
	cout << getdoubleBranchNode(T1) << endl;

	BiTree T2;
	createBiTree2(T2);
	cout << getdoubleBranchNode(T2) << endl;

	return 0;
}

 

最后

以上就是无奈彩虹为你收集整理的求二叉树中双分支结点的个数的全部内容,希望文章能够帮你解决求二叉树中双分支结点的个数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部