/quicksort-on-linkedlist

Quicksort implementation on linked lists with C. It takes a list, and returns the list in sorted sequence. Only pointers are changes, no new nodes are allocated and no key values are moved to different nodes.

Primary LanguageCGNU General Public License v2.0GPL-2.0

quicksort-on-linkedlist

Quicksort Algorithm implementation on linked lists with C. It takes a list, and returns the list in sorted sequence. Only pointers are changed, no new nodes are allocated and no key values are moved to different nodes.