Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #include "Calciatore.h"
  2.  
  3. typedef Calciatore * Elenco;
  4.  
  5. void create(Elenco &, const int, int & nelem );
  6. bool insert(Elenco, const int, int &, const Calciatore & c);
  7. void write(const Elenco, const int);
  8. bool in(const Elenco, const int , const Calciatore &, int & pos);
  9. void classifica(Elenco, const int);
  10. void copy(Elenco &, int &, const Elenco, const int, const int);
  11. void destroy(Elenco &, int &);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement