void mutapu(nod *& prim) { nod *p,*q; q=prim; prim=prim->leg; p=prim; while(p->leg!=0) p=p->leg; p->leg=q; q->leg=0; }