a
This commit is contained in:
parent
2311c7561c
commit
7109aca512
@ -6,20 +6,19 @@
|
||||
#define SIZE 100
|
||||
|
||||
struct tree {
|
||||
char question[SIZE];
|
||||
//otazka ab. odpoved
|
||||
char value[SIZE];
|
||||
// Odpoveď áno
|
||||
// Odpoveï áno
|
||||
struct tree* left;
|
||||
// Odpoveď nie
|
||||
// Odpoveï nie
|
||||
struct tree* right;
|
||||
};
|
||||
}tree;
|
||||
|
||||
void print_tree(struct node* tree,int offset){
|
||||
void print_tree(struct tree* tree,int offset){
|
||||
for (int i = 0; i < offset; i++){
|
||||
printf(" ");
|
||||
}
|
||||
printf("%s",tree->question);
|
||||
printf("%s",tree->value);
|
||||
if (tree->left){
|
||||
print_tree(tree->left,offset +3);
|
||||
print_tree(tree->right,offset +3);
|
||||
|
Loading…
Reference in New Issue
Block a user