Skip to content
Snippets Groups Projects
Verified Commit cee8957d authored by orestis.malaspin's avatar orestis.malaspin
Browse files

typo

parent 76181150
No related branches found
No related tags found
No related merge requests found
Pipeline #16195 passed
......@@ -387,4 +387,49 @@ Image 64 pixels, arbre 25 neouds.
# Structure de données
::: columns
:::: {.column width=50%}
## Pseudocode?
. . .
```python
struct node
info
node sup_gauche, sup_droit,
inf_gauche, inf_droit
```
![Un noeud d'arbre quaternaire.](figs/quad_struct.svg)
::::
:::: {.column width=50%}
## En C?
. . .
```C
struct _node {
int info;
struct _node *sup_left;
struct _node *sup_right;
struct _node *inf_left;
struct _node *inf_right;
};
```
* Pourquoi le `*` est important?
. . .
* Type récursif => taille inconnue à la compilation.
::::
:::
# Implémentation
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment