19 lines
238 B
C
19 lines
238 B
C
#include <stdio.h>
|
|
#include "AVL.h"
|
|
|
|
|
|
Node *insertNode(Node **proot, int x) {
|
|
return NULL;
|
|
}
|
|
|
|
Node *findNode(Node *root, int x) {
|
|
return NULL;
|
|
}
|
|
|
|
Node *deleteNode(Node **proot, int x) {
|
|
return NULL;
|
|
}
|
|
|
|
void destroyTree(Node *root) {
|
|
}
|