Advertisement
Guest User

Untitled

a guest
Jan 6th, 2021
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1. //ordinamento.h
  2.  
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5.  
  6. struct list_node
  7. {
  8.     double valore;
  9.     unsigned int id ;
  10.     struct list_node *next;
  11. };
  12.  
  13. typedef struct list_node Node;
  14.  
  15. void inserisci(Node **head, Node *element);
  16. void stampa(Node *head);
  17. void ordina(Node ** head);
  18. void assegna_id(Node **head);
  19. double trova_id(Node **head, int user_id);
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement