Wrote BST tests and list structure

This commit is contained in:
2025-05-04 21:54:22 +02:00
parent 1c8ab00c13
commit b14156589c
7 changed files with 151 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
struct List {
int data;
List *next;
};
List *insert(List *head, int data);