AVL init (not finished)
This commit is contained in:
18
week12/AVL.c
Normal file
18
week12/AVL.c
Normal 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) {
|
||||
}
|
||||
Reference in New Issue
Block a user