Guest User

Untitled

a guest
Apr 26th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. void fila_inverte(Fila* f)
  2. {
  3. float v;
  4.  
  5. if(f == NULL)
  6. return;
  7.  
  8. else{
  9. v = fila_retira(f);
  10. fila_inverte(f);
  11.  
  12. fila_insere(f, v);
  13. }
  14. }
  15.  
  16. }
Add Comment
Please, Sign In to add comment