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
Commits
89c3f9cc
Verified
Commit
89c3f9cc
authored
3 years ago
by
orestis.malaspin
Browse files
Options
Downloads
Patches
Plain Diff
started binary trees
parent
10cfa312
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#15616
failed
3 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
slides/cours_15.md
+258
-11
258 additions, 11 deletions
slides/cours_15.md
with
258 additions
and
11 deletions
slides/cours_15.md
+
258
−
11
View file @
89c3f9cc
...
...
@@ -36,6 +36,12 @@ patat:
*
Le
**niveau**
est 1 à la racine et
**niveau+1**
pour les fils,
*
Le
**degré**
d'un noeud est le nombre de fils du noeud.
. . .
*
Chaque noeud est un arbre en lui même.
*
La
**récursivité**
sera très utile!
# Arbre ou pas arbre?
::: columns
...
...
@@ -159,18 +165,259 @@ graph TD;
# Application: recherche rapide
## Pouvez vous construire un arbre pour résoudre le nombre secret?
. . .
*
Le nombre secret ou la recherche dychotomique (nombre entre 0 et 10).
```
{.mermaid format=pdf width=
30
0 loc=figs/}
```
{.mermaid format=pdf width=
28
0 loc=figs/}
graph LR;
5-->2;
5-->7;
7-->8;
7-->6;
8-->9;
9-->10;
2-->1;
2-->3;
3-->4;
1-->0;
5-->|<|2;
5-->|>|7;
7-->|>|8;
7-->|<|6;
8-->|>|9;
9-->|>|10;
2-->|<|1;
2-->|>|3;
3-->|>|4;
1-->|<|0;
```
# Autres représentation
*
Botanique
*
Ajouter les degrés/niveaux et feuilles
```
{.mermaid width=300 format=pdf loc=figs/}
graph TD;
A-->B;
A-->C;
B-->D;
B-->E;
B-->F;
F-->I;
F-->J;
C-->G;
C-->H;
H-->K;
```
# Autres représentation
*
Ensembliste
::: columns
:::: column
```
{.mermaid width=300 format=pdf loc=figs/}
graph TD;
A-->B;
A-->C;
B-->D;
B-->E;
B-->F;
F-->I;
F-->J;
C-->G;
C-->H;
H-->K;
```
::::
. . .
:::: column

::::
:::
# Autres représentation
*
Liste
::: columns
:::: column
```
{.mermaid width=300 format=pdf loc=figs/}
graph TD;
A-->B;
A-->C;
B-->D;
B-->E;
B-->F;
F-->I;
F-->J;
C-->G;
C-->H;
H-->K;
```
::::
. . .
:::: column
```
(A
(B
(D)
(E)
(F
(I)
(J)
)
)
(C
(G)
(H
(K)
)
)
)
```
::::
:::
# Autres représentation
*
Par niveau
::: columns
:::: column
```
{.mermaid width=300 format=pdf loc=figs/}
graph TD;
A-->B;
A-->C;
B-->D;
B-->E;
B-->F;
F-->I;
F-->J;
C-->G;
C-->H;
H-->K;
```
::::
. . .
:::: column
```
1 2 3 4
-------------------------
A
B
D
E
F
I
J
C
G
H
K
```
::::
:::
# L'arbre binaire
*
Structure de données abstraite,
*
Chaque noeud a au plus deux fils: gauche et droite,
*
Chaque fils est un arbre.
## Comment représenteriez vous une telle structure?
. . .
```
C
<r, A1, A2>
r: racine
A1: sous-arbre gauche
A2: sous-arbre droite
```
## Comment cela s'écrirait en C?
. . .
```
C
typedef struct _node {
contenu info;
struct _node *left_subtree, *right_subtree;
} node;
typedef node *tree;
```
# L'arbre binaire
## Que se passerait-il avec
```
C
typedef struct _node {
int info;
struct _node left_subtree, right_subtree;
} node;
```
*
On ne sait pas quelle est la taille de node, on ne peut pas l'allouer!
## Interface minimale
*
Qu'y mettriez vous?
. . .
```
C
NULL -> arbre (vide)
<n, arbre, arbre> -> arbre
racine(arbre) -> noeud
gauche(arbre) -> arbre (sous-arbre de gauche)
droite(arbre) -> arbre (sous-arbre de droite)
```
*
Les autres opérations (insertion, parcours, etc) dépendent de ce qu'on stocke
dans l'arbre.
# Exemple d'arbre binaire
*
Représentez
`(a * b - c) * (d + e / f)`
à l'aide d'un arbre binaire (matrix)
. . .
::: columns
:::: column
```
{.mermaid format=pdf width=200 loc=figs/}
graph TD;
A[*]-->B[-];
B-->C[c];
B-->D[*];
D-->E[a];
D-->F[b];
A-->G[+];
G-->H[d];
G-->I["/"];
I-->J[e];
I-->K[f];
```
::::
:::: column
## Remarques
*
L'arbre est
**hétérogène**
: le genre d'info est pas le même sur chaque noeud.
*
Les feuilles contiennent les opérandes.
*
Les noeuds internes contiennent les opérateurs.
::::
:::
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment