reading a char array inside a linked list node?
I’m trying to build a Binary search tree using linked list. so my struct for my linked list is: typedef struct node{ char english[20]; char span[60]; struct node *left; struct node *…
Start Learning to Code
I’m trying to build a Binary search tree using linked list. so my struct for my linked list is: typedef struct node{ char english[20]; char span[60]; struct node *left; struct node *…
I am having problems understanding where to start writing this method. The method builds a tree using data gotten from an array (which is a global variable). The method takes two parameters which …