728x90
[ 자료구조 ] Tree Linked List로 구현하기 (1)
#include <stdio.h>
#include <malloc.h>
struct tnode{
int data;
struct tnode * left_child;
struct tnode * right_child;
};
typedef struct tnode node;
typedef node * tree_ptr;
tree_ptr insert(tree_ptr head, int * number){
tree_ptr tnodes[5];
tree_ptr temp = NULL;
for(int i = 0; i<5; i++){
tnodes[i] = (tree_ptr)malloc(sizeof(node));
tnodes[i]->data = number[i];
tnodes[i]->left_child = tnodes[i]->right_child = NULL;
}
head = tnodes[0];
tnodes[0]->left_child = tnodes[1];
tnodes[0]->right_child = tnodes[2];
tnodes[1]->right_child = tnodes[3];
tnodes[2]->left_child = tnodes[4];
return head;
}
void inorder(tree_ptr ptr){
if(ptr){
inorder(ptr->left_child); // 재귀
printf("%d",ptr->data);
inorder(ptr->right_child);
}
}
int main()
{
int i, number[5] = { 23, 24, 42, 13, 28 };
tree_ptr head = NULL;
head = insert(head, number);
inorder(head);
}
728x90
'CS > 자료구조' 카테고리의 다른 글
[ 자료구조 ] inorder preorder postorder traversal 탐색 알고리즘 (0) | 2021.11.28 |
---|---|
[ 자료구조 ] Tree Linked List로 구현하기 (2) (0) | 2021.11.27 |
[ 자료구조 ] Skewed 이진트리 포화 이진트리 완전 이진트리 (0) | 2021.11.25 |
[ 자료구조 ] 이진트리 Binary Tree (1) | 2021.11.24 |
[ 자료구조 ] Tree 자료구조 저장 방법 (1) | 2021.11.23 |