home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
listings
/
v_08_08
/
8n08071a
< prev
next >
Wrap
Text File
|
1990-07-18
|
381b
|
16 lines
if ((j - first) > SMALLEST_QSORT_PARTITION)
my_qsort( data, first, j-1 );
else
insertion_sort( data, first, j-1 );
if ((last - j) > SMALLEST_QSORT_PARTITION )
my_qsort( data, j+1, last );
else
insertion_sort( data, j+1, last );
Using Insertion Sort on Small Arrays
Figure 15