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
dd4bd283
Verified
Commit
dd4bd283
authored
3 years ago
by
orestis.malaspin
Browse files
Options
Downloads
Patches
Plain Diff
added examples
parent
99384377
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
slides/cours_15.md
+159
-0
159 additions, 0 deletions
slides/cours_15.md
with
159 additions
and
0 deletions
slides/cours_15.md
0 → 100644
+
159
−
0
View file @
dd4bd283
---
title: "Arbres"
date: "2022-02-23"
patat:
eval:
tai:
command: fish
fragment: false
replace: true
ccc:
command: fish
fragment: false
replace: true
images:
backend: auto
...
# Les arbres: définition
"Un arbre est un graphe acyclique orienté possédant une unique racine, et tel que tous les nœuds sauf la racine ont un unique parent."
. . .
**Santé!**
## Plus sérieusement
*
Ensemble de
**noeuds**
et d'
**arêtes**
(graphe),
*
Les arêtes relient les noeuds entre eux, mais pas n'importe comment: chaque
noeud a au plus un
**parent**
,
*
Le seul noeud sans parent est la
**racine**
,
*
Chaque noeud a un nombre fini de
**fils**
,
*
La hiérarchie des noeuds rend les arêtes
**orientées**
(parent -> fils), et empêche les
**cycles**
(acyclique, orienté).
*
La
**feuille**
ou
**noeud terminal**
est un noeud sans enfants,
*
Le
**niveau**
est 1 à la racine et
**niveau+1**
pour les fils,
*
Le
**degré**
d'un noeud est le nombre de fils du noeud.
# Arbre ou pas arbre?
::: columns
:::: column
```
mermaid
graph TD;
1-->2;
1-->3;
3-->2;
3-->4;
3-->5;
```
::::
. . .
:::: column
```
mermaid
graph TD;
1-->2;
1-->3;
3-->4;
3-->5;
3-->6;
```
::::
:::
# Arbre ou pas arbre?
::: columns
:::: column
```
mermaid
graph TD;
1-->2;
1-->3;
3-->4;
3-->5;
3-->6;
6-->7;
7-->3;
```
::::
. . .
:::: column
```
mermaid
graph TD;
1;
```
::::
:::
# Arbre ou pas arbre?
::: columns
:::: column
```
mermaid
graph TD;
1---2;
1---3;
3---4;
3---5;
```
::::
. . .
:::: column
```
mermaid
graph BT;
1-->2;
1-->3;
3-->4;
3-->5;
3-->6;
```
::::
:::
# Degré et niveau
*
Illustration du degré (nombre de fils) et du niveau (profondeur)
::: columns
:::: column
```
mermaid
graph TD;
1[degré 2]-->2[degré 0];
1-->3[degré 3];
3-->4[degré 0];
3-->5[degré 0];
3-->6[degré 0];
```
::::
. . .
:::: column
```
mermaid
graph TD;
1[niveau 1]-->2[niveau 2];
1-->3[niveau 2];
3-->4[niveau 3];
3-->5[niveau 3];
3-->6[niveau 3];
```
::::
:::
*
Les noeuds de degré 0, sont des feuilles.
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