Commit 7a8ec0f4e343cc6e806f76452e4f85fe0a943001

Authored by Raouak Haroun
1 parent d4da0378

commit struct arbre

Showing 1 changed file with 6 additions and 0 deletions   Show diff stats
projet.c 0 → 100644
... ... @@ -0,0 +1,6 @@
  1 +typedef struct node
  2 +{
  3 + int key;
  4 + struct node *left;
  5 + struct node *right;
  6 +} node ;
... ...