Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //ordinamento.h
- #include <stdio.h>
- #include <stdlib.h>
- struct list_node
- {
- double valore;
- unsigned int id ;
- struct list_node *next;
- };
- typedef struct list_node Node;
- void inserisci(Node **head, Node *element);
- void stampa(Node *head);
- void ordina(Node ** head);
- void assegna_id(Node **head);
- double trova_id(Node **head, int user_id);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement