Printing the whole tree

Nasza ocena:

3
Wyświetleń: 441
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Printing the whole tree - strona 1

Fragment notatki:

Printing the whole tree void print_tree(bn *node) { if (node) { print_tree(node-left); printf("%d ",node-data); print_tree(node-right); } } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz