#Sorting linked list
I have a linked list that has about 500 items in it so far. I am
trying to find a different way of sorting it than of searching
through the list to find the proper place to insert a new item. Each
sort takes about 40 to 50 seconds right now and this will get worse
as I continually add items. Does anyone have any ideas on a better
way to sort it?