Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void oglindire(nod * & p)
- {
- nod * a = NULL;
- for( ; p ; )
- {
- nod * t = p;
- p = p->urm;
- t->urm = a;
- a = t;
- }
- p = a;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement