Category : C Source Code
Archive   : SNIP1292.ZIP
Filename : LL_QSORT.C

 
Output of file : LL_QSORT.C contained in archive : SNIP1292.ZIP
/*========== SNIP SNIP SNIP ==========*/
/* SORT.H */

void *sortl(void *list, void *(*getnext)(void *),
void (*setnext)(void *, void *),
int (*compare)(void *, void *));

/*========== SNIP SNIP SNIP ==========*/
/* SORT.C */
#include
#include "sort.h"


/*
This is a quicksort routine to be used to sort linked-lists
by Jon Guthrie.
*/

void *sortl(list, getnext, setnext, compare)
void *list, *(*getnext)(void *), (*setnext)(void *, void *);
int (*compare)(void *, void *);

{
void *low_list, *high_list, *current, *pivot, *temp;
int result;

/*
Test for empty list.
*/
if(NULL == list)
return(NULL);

/*
Find the first element that doesn't have the same value as the first
element.
*/
current = list;
do
{
current = getnext(current);
if(NULL == current)
return(list);
} while(0 == (result = compare(list, current)));

/*
My pivot value is the lower of the two. This insures that the sort
will always terminate by guaranteeing that there will be at least one
member of both of the sublists.
*/
if(result > 0)
pivot = current;
else
pivot = list;

/* Initialize the sublist pointers */
low_list = high_list = NULL;

/*
Now, separate the items into the two sublists
*/
current = list;
while(NULL != current)
{
temp = getnext(current);
if(compare(pivot, current) < 0)
{
/* add one to the high list */
setnext(current, high_list);
high_list = current;
}
else
{
/* add one to the low list */
setnext(current, low_list);
low_list = current;
}
current = temp;
}

/*
And, recursively call the sort for each of the two sublists.
*/
low_list = sortl(low_list, getnext, setnext, compare);
high_list = sortl(high_list, getnext, setnext, compare);

/*
Now, I have to put the "high" list after the end of the "low" list.
To do that, I first have to find the end of the "low" list...
*/
current = temp = low_list;
while(1)
{
current = getnext(current);
if(NULL == current)
break;
temp = current;
}

/*
Then, I put the "high" list at the end of the low list
*/
setnext(temp, high_list);
return(low_list);
}

/* mergesort linked lists by Ray Gardner */
/* split list into 2 parts, sort each recursively, merge */
void *sortl(p, getnext, setnext, compare)
void *p, *(*getnext)(void *), (*setnext)(void *, void *);
int (*compare)(void *, void *);
{
void *q, *r, *head;

if ( p ) { /* first split it */
r = p;
for ( q = getnext(r); q && (q = getnext(q)) != NULL; q = getnext(q) )
r = getnext(r);
q = getnext(r);
setnext(r, NULL);
if ( q ) { /* now sort each sublist */
p = sortl(p, getnext, setnext, compare);
q = sortl(q, getnext, setnext, compare);
if ( compare(q, p) < 0 ) { /* smallest item becomes list head */
head = q;
q = getnext(q);
} else {
head = p;
p = getnext(p);
}
for ( r = head; p && q; ) { /* now merge the lists under head */
if ( keycmp(q, p) < 0 ) {
setnext(r, q);
r = q;
q = getnext(q);
} else {
setnext(r, p);
r = p;
p = getnext(p);
}
}
setnext(r, (p ? p : q)); /* append the leftovers */
p = head;
}
}
return p;
}


  3 Responses to “Category : C Source Code
Archive   : SNIP1292.ZIP
Filename : LL_QSORT.C

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/