Update cv7/program.c
This commit is contained in:
parent
8b4c6f2707
commit
63179fb088
@ -4,7 +4,6 @@
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
|
||||
#define SIZE 200
|
||||
|
||||
struct tree
|
||||
@ -81,21 +80,25 @@ int main(void)
|
||||
printf("%s",p->value);
|
||||
if(p->value[0]=='*')
|
||||
break;
|
||||
|
||||
do{
|
||||
t=fgetc(stdin);
|
||||
if(t=='a')
|
||||
{
|
||||
p=p->left;
|
||||
p=p->left; break;
|
||||
}
|
||||
else if(t=='n')
|
||||
{
|
||||
p=p->right;
|
||||
p=p->right; break;
|
||||
}
|
||||
else if(t!='\n')
|
||||
{
|
||||
printf("Nerozumiem\n");
|
||||
t=44;
|
||||
break;
|
||||
}
|
||||
|
||||
}while(1);
|
||||
}while(1);
|
||||
}while(t!=44);
|
||||
|
||||
printf("Koniec\n");
|
||||
destroy_tree(tr);
|
||||
|
Loading…
Reference in New Issue
Block a user