Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cours
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
algorithmique
cours
Merge requests
!63
Changed fa.tail->data to fa.head->data and vice-verse lines 316, 317
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Changed fa.tail->data to fa.head->data and vice-verse lines 316, 317
costanti.volta/cours:costanti.volta-master-patch-26254
into
master
Overview
1
Commits
1
Pipelines
1
Changes
1
Merged
costanti.volta
requested to merge
costanti.volta/cours:costanti.volta-master-patch-26254
into
master
1 year ago
Overview
1
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
d57ab365
1 commit,
1 year ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
slides/cours_11.md
+
2
−
2
Options
@@ -313,8 +313,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
Loading