fork download
  1. // node structure for a binary search tree
  2. struct node {
  3. int data;
  4. int height;
  5. struct node *left;
  6. struct node *right;
  7. };
  8.  
  9. // inserts key k into an avl tree t
  10. struct node * insertavl(struct node *t, int k);
  11.  
  12. // deletes key k from avl tree t
  13. struct node * deleteavl(struct node *t, int k);
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
/usr/lib/gcc/i686-pc-linux-gnu/4.3.4/../../../crt1.o: In function `_start':
(.text+0x18): undefined reference to `main'
collect2: ld returned 1 exit status
stdout
Standard output is empty