Wrote BST tests and list structure
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
struct List {
|
||||
int data;
|
||||
List *next;
|
||||
};
|
||||
|
||||
List *insert(List *head, int data);
|
||||
Reference in New Issue
Block a user