/SortedList

Linked list that sorts itself in descending order. Written in C

Primary LanguageC

SortedList

C linked list that sorts any type of list in descending order.

Change main.c to how you want to insert items.

Insert: 2, 3, 8, 2, 5, 6, 3, 9
Output: 9, 8, 6, 5, 3, 2

Notice: Program ignores doubles.

Usage

Build: make && make clean
Run program: ./sl

"make clean" is optional. It is used only to remove object and library files in the same directory.