Advertisement
a53

FListaOglindire

a53
May 30th, 2021
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. void oglindire(nod * & p)
  2. {
  3. nod * a = NULL;
  4. for( ; p ; )
  5. {
  6. nod * t = p;
  7. p = p->urm;
  8. t->urm = a;
  9. a = t;
  10. }
  11. p = a;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement