Skip to content
Snippets Groups Projects
Commit 9645030a authored by goldman09's avatar goldman09
Browse files

Header zum Baum

parent 62d7ea0c
No related branches found
No related tags found
No related merge requests found
tree.h 0 → 100644
#ifndef tree_h
#define tree_h
struct tree_node {
int* val;
struct tree_node* left;
struct tree_node* right;
};
void t_insert (struct tree_node* curr, int* val);
void* t_search (struct tree_node* curr, int* val);
void t_print (struct tree_node* curr);
#endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment