AVL init (not finished)

This commit is contained in:
2021-05-18 09:39:13 +08:00
parent 49fcc0351b
commit 2085b95e1b
4 changed files with 394 additions and 0 deletions

18
week12/AVL.c Normal file
View File

@@ -0,0 +1,18 @@
#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) {
}