Linked List in C

Linked lists have their own strengths and weaknesses, but they happen to be strongwhere arrays are weak. Generally array’s allocates the memory for all its elements inone block whereas linked lists use an entirely different strategy. Linked lists allocatememory for each element separately and only when necessary A linked list is represented by a pointer … Read more