Experimenting with qsort and it runs perfectly for me. I use function pointers throughout the program and some other features I am not used to (i.e. such as void pointers).
I want the elements arranged in descending order (i.e. as opposed to ascending order), however. What can I do to achieve this?
Here is the code:
#include <iostream>
#include <cstdlib> // Required for qsort
#include <cstring>
using std::cout;
using std::endl;
int compare_strs( const void *arg1, const void *arg2 );
int compare_ints( const void* arg1, const void* arg2 );
int main()
{
char * shrooms[10] =
{
"Matsutake", "Lobster", "Oyster", "King Boletus",
"Shaggy Mane", "Morel", "Chanterelle", "Calf Brain",
"Pig's Ear", "Chicken of the Woods"
};
int nums[10] = {99, 43, 23, 100, 66, 12, 0, 125, 76, 2};
// The address of the array, number of elements
// the size of each element, the function pointer to
// compare two of the elements
qsort( (void *)shrooms, 10, sizeof( char * ), compare_strs );
qsort( (void *)nums, 10, sizeof( int * ), compare_ints );
// Output sorted lists
for ( int i = 0; i < 10; ++i )
cout << shrooms[i] << endl;
for ( int i = 0; i < 10; ++i )
cout << nums[i] << endl;
return 0;
}
int compare_ints( const void * arg1, const void * arg2 )
{
int return_value = 0;
if ( *(int *)arg1 < *(int *)arg2 )
return_value = -1;
else if ( *(int *)arg1 > *(int *)arg2 )
return_value = 1;
return return_value;
}
int compare_strs( const void * arg1, const void * arg2 )
{
return ( _stricmp( *(char **) arg1, *(char **) arg2 ) );
}
The program outputs in ascending order (i.e. starting with Calf Brain), but I am trying to get it to start with Shaggy Mane (i.e. descending order). Any help would be much appreciated.


intcomparator can simply subtract right from left. the result will be negative if left < right, 0 if they're equal, and positive if left > right.) – WhozCraig Jan 20 at 5:07qsortin C++? – Jerry Coffin Jan 20 at 5:10qsort( (void *)nums, 10, sizeof( int * ), compare_ints );is not correct. It is by sheer luck thatintandint *are the same size on your system. You should always use the size of the element in your sequence. To generally ensure this, usesizeof(nums[0]). So your invoke would read:qsort( (void *)nums, 10, sizeof( nums[0] ), compare_ints );– WhozCraig Jan 20 at 5:21