From 37767bc923cd06a05ee72395f324f5ed1e77a63f Mon Sep 17 00:00:00 2001 From: "yassin.elhakoun" <yassin.el-hakouni@etu.hesge.ch> Date: Mon, 18 Dec 2023 14:05:07 +0100 Subject: [PATCH] =?UTF-8?q?Update=20cours=5F12.md=20(commentaires=20invers?= =?UTF-8?q?=C3=A9s)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- slides/cours_12.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slides/cours_12.md b/slides/cours_12.md index 825a674..1516fa9 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 -- GitLab