Advertisement
mario_mos

linklist

Jul 27th, 2023
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3. #include <stdlib.h>
  4. #include <time.h>
  5. #include <string.h>
  6.  
  7.  
  8.  
  9.  
  10. typedef struct Liste
  11. {
  12. int length;
  13. char *auteur;
  14. char *titre;
  15. struct Liste *suivant;
  16. struct Liste *debut;
  17. struct Liste *fin;
  18.  
  19. }*Liste;
  20.  
  21.  
  22.  
  23. void ajouter(Liste *debut, int val) {
  24. Liste *noeud_actuel = debut;
  25. while (noeud_actuel->suivant != NULL) {
  26. noeud_actuel = noeud_actuel->suivant;
  27. }
  28. noeud_actuel->suivant = (Liste *) malloc(sizeof(Liste));
  29. noeud_actuel->suivant->val = val;
  30. noeud_actuel->suivant->suivant = NULL;
  31. }
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39. int main()
  40. {
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51. return 0;
  52. }
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement