어떻게 두 갈래 나무가 만 두 갈래 나무인지 판단합니까?
#include<iostream>
#define N 15
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 max(int x, int y)
{
return x > y ? x : y;
}
int getDepth(BiTree T)
{
if(NULL == T)
return 0;
return 1 + max(getDepth(T->leftChild), getDepth(T->rightChild));
}
int getAllNode(BiTree T)
{
if(NULL == T)
return 0;
return 1 + getAllNode(T->leftChild) + getAllNode(T->rightChild);
}
bool isFullBinaryTree(BiTree T)
{
int all = getAllNode(T);
int depth = getDepth(T);
int n = all + 1;
if(0 == ( n & (n - 1)) ) //
return true;
return false;
}
void print(bool b)
{
if(b)
cout << "yes" << endl;
else
cout << "no" << endl;
}
int main()
{
BiTree T1;
T1 = createBiTree1();
print(isFullBinaryTree(T1));
BiTree T2;
createBiTree2(T2);
print(isFullBinaryTree(T2));
return 0;
}
결과는 다음과 같습니다.
yes no
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.