Files
dsa/week12/AVL.c
2021-05-18 09:39:13 +08:00

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) {
}