hi everybody,
I've got this program that i am doing actually.
I have to use insertion sort to sort a linked list.
i've got the length of the link list.
The link is as follows :
typedef struct node* link;
struct node { int item; link next; };
if anybody could help me ASAP, that would be great !
thanks !