두 갈래 나무의 여러 가지 역행 방법
2738 단어 두 갈래 나무
1. 두 갈래 나무가 가득한 전차를 보여 줍니다.
#include
#include
//
char cache[101];
typedef struct Node
{
char data;
struct Node *lchild,*rchild;
};
struct Node *root;
int cnt;
struct Node *Build_tree()
{
struct Node *root;
if(cache[cnt++]=='#')
{
root=NULL;
}
else
{
root = (struct Node *) malloc(sizeof(struct Node));
root -> data = cache[cnt-1];
root -> lchild = Build_tree();
root -> rchild = Build_tree();
}
return root;
}
void in_order(struct Node *root)
{
if(root!=NULL)
{
in_order(root -> lchild);
printf("%c ",root -> data);
in_order(root -> rchild);
}
}
void clean(struct Node *root)
{
if(root!=NULL)
{
clean(root -> lchild);
clean(root -> rchild);
free(root);
}
}
int main ()
{
int i;
while(scanf("%s",cache)!=EOF)
{
cnt=0;
root=Build_tree();
in_order(root);
clean(root);
printf("
");
}
return 0;
}
2. 선순과 중순을 알고 후순을 반복한다(poj2255).
#include
#include
#include
#include
using namespace std;
const int maxn=10005;
char preo[maxn],ino[maxn];
typedef struct Node
{
char data;
Node *lson,*rson;
};
struct Node *root;
Node* _build (int n,char *preo,char *ino)
{
if(n<=0) return NULL;
Node *node =new Node;
for(int i=0;i data = ino[i];
node -> lson = _build (i,preo+1,ino);
node -> rson = _build (n-i-1,preo+i+1,ino+i+1);
break;
}
}
return node;
}
void print(struct Node *node)
{
if(node)
{
print(node->lson);
print(node->rson);
if(node==root)
{
printf("%c
",node->data);
}
else
{
printf("%c",node -> data);
}
}
}
int main ()
{
while(scanf("%s %s",preo,ino)!=EOF)
{
int len=strlen(ino);
root=_build(len,preo,ino);
print(root);
}
return 0;
}
3. 후순과 중순을 알고 선순을 구한다.
Node* build (int n, int* ino, int* post)
{
Node* node = new Node;
int i = n - 1;
if (n <= 0)
return NULL;
while (ino[i] != post[n - 1])
i--;
node -> val = ino[i];
node -> left = build(i, ino, post);
node -> right = build(n - i - 1, ino + i + 1, post + i);
return node;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java 데이터 구조 2차원 트리의 실현 코드일.두 갈래 트리 인터페이스 2 노드 클래스 3. 두 갈래 나무 구현 이 글을 통해 여러분께 도움이 되었으면 좋겠습니다. 본 사이트에 대한 지지에 감사드립니다!...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.