diff --git a/slides/cours_12.md b/slides/cours_12.md index 0a864be50e313b373d32b5d17e110e67a06f8959..47704a4db0608ab6a404e6d6f9492543cf423b41 100644 --- a/slides/cours_12.md +++ b/slides/cours_12.md @@ -62,8 +62,8 @@ typedef struct _queue { // File d'attente: ```C void queue_init(queue *fa); // head = tail = NULL bool queue_is_empty(queue fa); // fa.head == fa.tail == NULL -int queue_tail(queue fa); // return fa.head->data -int queue_head(queue fa); // return fa.tail->data +int queue_tail(queue fa); // return fa.tail->data +int queue_head(queue fa); // return fa.head->data ``` ## Manipulations et destruction @@ -465,8 +465,7 @@ sorted_list sorted_list_push(sorted_list list, int val) { . . . -{width=80%} +{width=80%} . . . @@ -488,8 +487,7 @@ sorted_list sorted_list_push(sorted_list list, int val) { . . . -{width=70%} +{width=70%} . . .