Initializacia
This commit is contained in:
		
							parent
							
								
									13efda128e
								
							
						
					
					
						commit
						00d8213551
					
				@ -64,9 +64,7 @@ void count_items(struct tree* tree, int* count){
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int main() {
 | 
			
		||||
    printf("Nacitanie baze pravidiel:\n");
 | 
			
		||||
    struct tree* root = load_tree();
 | 
			
		||||
 | 
			
		||||
    if (!root) {
 | 
			
		||||
        printf("Chyba: Nepodarilo sa nacitat bazu pravidiel.\n");
 | 
			
		||||
        return 1;
 | 
			
		||||
@ -75,8 +73,9 @@ int main() {
 | 
			
		||||
    int count = 0;
 | 
			
		||||
    count_items(root, &count);
 | 
			
		||||
    printf("Pozna %d druhov ovocia a zeleniny.\n", count);
 | 
			
		||||
    printf("Strom pre ladenie:\n");
 | 
			
		||||
    print_tree(root, 0);
 | 
			
		||||
    printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
 | 
			
		||||
 | 
			
		||||
    run_tree(root);
 | 
			
		||||
 | 
			
		||||
    destroy_tree(root);
 | 
			
		||||
    return 0;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user