Advertisement
UserAC

Untitled

Jun 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. int stampaConSalti(nodo* r, int k, int salto){
  2. if(r)
  3. {
  4. salto = stampaConSalti(r->left,k,salto);
  5. salto=salto-1;
  6. if(salto==0){
  7. cout<<r->info<<" ";
  8. salto=k;
  9. }
  10. return salto = stampaConSalti(r->right, k, salto);
  11. }
  12. else
  13. return salto;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement