Notice
Recent Posts
Recent Comments
Link
dew's CSE Studying
8.4 이진트리의 순회 본문
[순회 프로그램]
//순회 프로그램
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
typedef struct TreeNode {
int data;
struct TreeNode* left, * right;
}TreeNode;
// 15
// 4 20
// 1 16 25
TreeNode n1 = { 1,NULL,NULL };
TreeNode n2 = { 4,&n1,NULL };
TreeNode n3 = { 16,NULL,NULL };
TreeNode n4 = { 25,NULL,NULL };
TreeNode n5 = { 20,&n3,&n4 };
TreeNode n6 = { 15,&n2,&n5 };
TreeNode* root = &n6;
inorder(TreeNode* root) {//중위순회
if (root) {
inorder(root->left);
printf("[%d] ", root->data);
inorder(root->right);
}
}
preorder(TreeNode* root) {//전위순회
if (root) {
printf("[%d] ", root->data);
inorder(root->left);
inorder(root->right);
}
}
postorder(TreeNode* root) {//후위순회
if (root) {
inorder(root->left);
inorder(root->right);
printf("[%d] ", root->data);
}
}
int main(void)
{
printf("중위 순회=");
inorder(root);
printf("\n");
printf("전위 순회=");
preorder(root);
printf("\n");
printf("후위 순회=");
postorder(root);
printf("\n");
return 0;
}
'2-2 > 자료구조' 카테고리의 다른 글
9.4 히프의 구현(히프트리 전체 함수) (0) | 2023.11.16 |
---|---|
8.10 스레드이진트리 순회 프로그램 (1) | 2023.11.15 |
4장 연습문제 #10, #11, #12 (2) | 2023.10.21 |
6장 LAB 문제풀이 (2) | 2023.10.20 |
4.4 스택의 응용: 괄호 검사 문제 (2) | 2023.10.18 |