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
!6
Pk
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Pk
pk
into
master
Overview
0
Commits
12
Pipelines
1
Changes
1
Merged
pierre.kunzli
requested to merge
pk
into
master
3 years ago
Overview
0
Commits
12
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Viewing commit
b3a7b643
Prev
Next
Show latest version
1 file
+
4
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
b3a7b643
correction de coquilles
· b3a7b643
Pierre Kunzli
authored
3 years ago
slides/cours_18.md
+
4
−
2
Options
@@ -426,8 +426,8 @@ fe(P) = -1
fe(P) = -2 && fe(gauche(P)) = -1 => cas 1a
fe(P) = -2 && fe(gauche(P)) = +1 => cas 2a
fe(P) = +2 && fe(
gauch
e(P)) = -1 => cas
1
b
fe(P) = +2 && fe(
gauch
e(P)) = +1 => cas
2
b
fe(P) = +2 && fe(
droit
e(P)) = -1 => cas
2
b
fe(P) = +2 && fe(
droit
e(P)) = +1 => cas
1
b
```
## Dessiner les différents cas, sur le dessin ci-dessous
@@ -442,6 +442,7 @@ fe(P) = +2 && fe(gauche(P)) = +1 => cas 2b
. . .
\f
ootnotesize
```
arbre rotation_gauche(arbre P)
si est_non_vide(P)
@@ -473,6 +474,7 @@ arbre rotation_gauche(arbre P)
. . .
\f
ootnotesize
```
C
typedef struct _node {
int key;
Loading