Update cv7/program.c

This commit is contained in:
Yurii Yakovenko 2024-11-11 21:56:32 +00:00
parent 39fde4afb0
commit 6d8fbb2e83

View File

@ -4,14 +4,13 @@
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
#define SIZE 200 #define SIZE 200
struct tree struct tree
{ {
char value[SIZE]; char value[SIZE];
struct tree *left, *right; struct tree *left, *right;
}; };
@ -21,22 +20,22 @@ struct tree* read_tree()
char buffer[SIZE]; char buffer[SIZE];
memset(buffer,0,SIZE); memset(buffer,0,SIZE);
char* r = fgets(buffer,SIZE,stdin); char* r = fgets(buffer,SIZE,stdin);
assert(r); assert(r);
struct tree* node = (struct tree*)calloc(1,sizeof(struct tree)); struct tree* node = (struct tree*)calloc(1,sizeof(struct tree));
memcpy(node->value,buffer,SIZE); memcpy(node->value,buffer,SIZE);
node->left=NULL; node->left=NULL;
node->right=NULL; node->right=NULL;
if(node->value[0]!='*') if(node->value[0]!='*')
{ {
node->left=read_tree(node->left); node->left=read_tree(node->left);
node->right=read_tree(node->right); node->right=read_tree(node->right);
} }
return node; return node;
@ -47,7 +46,7 @@ void print_tree(struct tree* tree,int offset){
for (int i = 0; i < offset; i++){ for (int i = 0; i < offset; i++){
printf("."); printf(".");
} }
if(tree) if(tree)
printf("%s",tree->value); printf("%s",tree->value);
if (tree->left){ if (tree->left){
@ -65,6 +64,7 @@ int main(void)
struct tree *tr; struct tree *tr;
tr=read_tree(); tr=read_tree();
char t;
printf("Expert z bufetu to vie.\n"); printf("Expert z bufetu to vie.\n");
printf("Pozna 2 druhov ovocia a zeleniny.\n"); printf("Pozna 2 druhov ovocia a zeleniny.\n");
@ -76,22 +76,21 @@ int main(void)
if(p->value[0]=='*') if(p->value[0]=='*')
break; break;
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n"); printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
char t=fgetc(stdin); do
if(t=='a') {
p=p->left; t=fgetc(stdin);
if(t=='n') if(t=='a')
p=p->right; {p=p->left; break;}
if(t=='n')
{p=p->right; break;}
}while(1);
}while(1); }while(1);
printf("Koniec\n");
printf("Koniec");
return 0; return 0;
} }