typedef struct cvor{ int br; struct cvor *l, *d; } CVOR; CVOR* napravi(int br); CVOR* ubaci(CVOR *drvo, int br); void ispisi(CVOR *drvo); void obrisi(CVOR *drvo);