c-linked-list icon indicating copy to clipboard operation
c-linked-list copied to clipboard

A quick linked list (singly linked) implementation in C, including a reversing function

Results 3 c-linked-list issues
Sort by recently updated
recently updated
newest added

I suggest to implement get(LinkedList* l, int n) function that return element in n-th position.

Hi, I refactored the code by moving the structure definitions into another file and rewrote the delete node function to be more compact. I also added some comments to explain...