13 lines
207 B
C
13 lines
207 B
C
#include "vector_tree.h"
|
|
|
|
struct vector *insert(struct vector *tree, int value){
|
|
|
|
return NULL;
|
|
}
|
|
|
|
void delete_node(struct vector *tree, int value){
|
|
return;
|
|
}
|
|
|
|
void pretty_print(struct vector *tree);
|