/* primer64.c - reprezentovanje drveta "prvi sin - desni brat" * tj. binarizacija; * (prefiksni i postfiksni obilazak) */ #include typedef struct celija { int broj; struct celija *sin; struct celija *brat; } Celija, *Lista; Lista drvo; void prefix( Lista ); void postfix( Lista); void prefix( Lista l ) { if( l != NULL ) { printf("%d ", l->broj ); prefix( l->sin ); prefix( l->brat ); } } void postfix( Lista l ) { if( l != NULL ) { postfix( l->sin ); printf("%d ", l->broj ); postfix( l->brat ); } }