1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
| #include <stdio.h> #include <stdlib.h>
#define true 1 #define false 0
typedef int elementType;
typedef struct bst { elementType data; struct bst *left; struct bst *right; }BST,*PBST;
PBST create_bst(int root_data); int insert_node(PBST bst,int data); PBST create_node(PBST child,int data); void print_inorder(PBST tree);
void main() { int in; printf("请输入根节点的值"); scanf("%d",&in);
PBST bst = create_bst(in); insert_node(bst,2);
insert_node(bst,4); insert_node(bst,1);
print_inorder(bst); }
PBST create_bst(int root_data) { PBST bst = (PBST)malloc(sizeof(PBST)); if(bst == NULL) { printf("malloc apply fail"); exit(-1); }
bst->data = root_data; bst->left = NULL; bst->right = NULL;
return bst; }
PBST create_node(PBST child,int data) { child = (PBST)malloc(sizeof(PBST)); if(child==NULL) { printf("malloc apply fail - child"); exit(-1); } child->data = data; child->left = child->right = NULL;
return child; }
int insert_node(PBST bst,int data) { PBST current_node = bst; if(current_node->data > data) { while(true){ if(current_node->left !=NULL) { current_node = current_node->left; }else { PBST child = (PBST)malloc(sizeof(PBST)); child = create_node(child,data);
printf("\nchild data : %d \n",child->data);
current_node->left = child;
break; } } }else{ while(true){ if(current_node->right !=NULL) { current_node = current_node->right; }else { PBST child = (PBST)malloc(sizeof(PBST)); child = create_node(child,data);
printf("\nchild data : %d \n",child->data);
current_node->right = child;
break; } } } }
void print_inorder(PBST tree) { if(tree) { print_inorder(tree->left); printf("%d\n",tree->data); print_inorder(tree->right); } }
|