Blame view

projet.c 91 Bytes
7a8ec0f4   Raouak Haroun   commit struct arbre
1
2
3
4
5
6
  typedef struct node
  {
      int key;
      struct node *left;
      struct node *right;
  } node ;