이 진 링크 의 기본 조작
6701 단어 데이터 구조
#include
using namespace std;
struct node
{
node *lChild;
node *rChild;
char data;
};
//
node *createTree()
{
char ch;
cin>>ch;
node *root;
if(ch=='#')
{
return NULL;
}
else
{
root=new node();
root->data=ch;
root->lChild=createTree();
root->rChild=createTree();
return root;
}
}
//
void print(node *t)
{
if(t)
{
cout<data<<" ";
print(t->lChild);
print(t->rChild);
}
}
//
int countNode(node *t)
{
if(t==NULL)
{
return 0;
}
else
{
return countNode(t->lChild) + countNode(t->rChild)+1;
}
}
//
int countLeaf(node *t)
{
if(t==NULL)
{
return 0;
}
else if(t->lChild==NULL && t->rChild==NULL)
{
return 1;
}
return countLeaf(t->lChild) + countLeaf(t->rChild);
}
//
int getHeight(node *t)
{
int l,r;
if(t==NULL)
{
return 0;
}
else
{
l=getHeight(t->lChild);
r=getHeight(t->rChild);
return (l>r)?(l+1):(r+1);
}
}
//
void printTree(node *t,int h)
{
if(t==NULL)
{
return;
}
printTree(t->rChild,h+1);
for(int i=1;icout<<" ";
}
cout<data<lChild,h+1);
}
//
void levelOrderPrint(node *t)
{
if(t==NULL)
{
return;
}
node *queue[100];
int front=-1,rear=-1;
queue[++rear]=t;
while(front!=rear)
{
front++;
cout<<queue[front]->data;
if(queue[front]->lChild!=NULL)
{
queue[++rear]=queue[front]->lChild;
}
if(queue[front]->rChild!=NULL)
{
queue[++rear]=queue[front]->rChild;
}
}
}
//
char parent(node *t,char n)
{
if(t==NULL||t->data==n)
{
return 0;
}
if(t->lChild && t->lChild->data==n)
{
return t->data;
}
if(t->rChild && t->rChild->data==n)
{
return t->data;
}
char val = parent(t->lChild,n);
if(val!=0)
{
return val;
}
else
{
return parent(t->rChild,n);
}
}
//
void destroyTree(node * (& t))
{
if(t)
{
destroyTree(t->lChild);
destroyTree(t->rChild);
delete t;
t=NULL;
}
}
int main()
{
node *t=NULL;
t=createTree();
print(t);
cout<1);
cout<cout<cout<cout<cout<cout<'4')<return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.