면접문제 두 갈래 나무의 앞 순서, 중간 순서, 뒤 순서(귀속 실현)
(1) 두 갈래 나무가 비어 있으면 빈 조작
(2) 두 갈래 나무가 비어 있지 않으면 뿌리 노드를 방문하고 왼쪽 트리를 앞뒤로 옮긴다. 오른쪽 트리를 앞뒤로 옮긴다.
두 갈래 나무가 비어 있으면 비어 있습니다.(2) 두 갈래 나무가 비어 있지 않으면 왼쪽 트리에 중순으로, 뿌리 노드에 접근하고, 오른쪽 트리에 중순으로
뒷차례 역귀환법 (1) 두 갈래 나무가 비어 있다면, 빈 조작 (2) 두 갈래 나무가 비어 있지 않으면, 뒷차례 왼쪽 트리, 뒷차례 오른쪽 트리, 뿌리 노드에 접근
참조 구현 코드:
4
[/u1/yyang/study/algorithm/binarytree](203)yyang@dcmvrh12#cat binarytree.h
#include <stdio.h>
#include <stdlib.h>
typedef struct BinaryTreeNode
{
int value;
BinaryTreeNode* left;
BinaryTreeNode* right;
}BTN;
BTN* CreateBTNode(int value)
{
BTN* btnode = new BinaryTreeNode();
if(btnode)
{
btnode->value = value;
btnode->left = NULL;
btnode->right = NULL;
}
return btnode;
}
void CreateBTree(BTN* root, BTN* left, BTN* right)
{
if(root)
{
root->left = left;
root->right =right;
}
}
void DeleteNode(BTN* root)
{
if(root == NULL)
return ;
if(root->left) DeleteNode(root->left);
if(root->right) DeleteNode(root->right);
delete root;
root = NULL;
}
cpp 파일4
[/u1/yyang/study/algorithm/binarytree] (208)yyang@dcmvrh12#cat rectranverse.cpp
#include "binarytree.h"
void preOrder(BTN* root)
{
if(root == NULL)
return;
printf(" %d ",root->value);
preOrder(root->left);
preOrder(root->right);
}
void inOrder(BTN* root)
{
if(root == NULL)
return;
inOrder(root->left);
printf(" %d ",root->value);
inOrder(root->right);
}
void postOrder(BTN* root)
{
if(root == NULL)
return;
postOrder(root->left);
postOrder(root->right);
printf(" %d ",root->value);
}
int main()
{
// 1
// / \
// 2 3
// /\ \
// 4 5 6
// /
// 7
//create BTN*node
BTN* btnode1 = CreateBTNode(1);
BTN* btnode2 = CreateBTNode(2);
BTN* btnode3 = CreateBTNode(3);
BTN* btnode4 = CreateBTNode(4);
BTN* btnode5 = CreateBTNode(5);
BTN* btnode6 = CreateBTNode(6);
BTN* btnode7 = CreateBTNode(7);
CreateBTree(btnode1,btnode2,btnode3);
CreateBTree(btnode2,btnode4,btnode5);
CreateBTree(btnode3,NULL,btnode6);
CreateBTree(btnode5,btnode7,NULL);
printf("preOrder is :
");
preOrder(btnode1);
printf("
inOrder is :
");
inOrder(btnode1);
printf("
postOrder is :
");
postOrder(btnode1);
printf("
");
//free the node
DeleteNode(btnode1);
}
컴파일 및 실행 결과:4
[/u1/yyang/study/algorithm/binarytree](209)yyang@dcmvrh12#g++ rectranverse.cpp -o rectranverse
[/u1/yyang/study/algorithm/binarytree](210)yyang@dcmvrh12#./rectranverse
preOrder is :
1 2 4 5 7 3 6
inOrder is :
4 2 7 5 1 3 6
postOrder is :
4 7 5 2 6 3 1
결과가 정확하다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java 데이터 구조 2차원 트리의 실현 코드일.두 갈래 트리 인터페이스 2 노드 클래스 3. 두 갈래 나무 구현 이 글을 통해 여러분께 도움이 되었으면 좋겠습니다. 본 사이트에 대한 지지에 감사드립니다!...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.