I've got an array of char*'s in a file. The co. I work for stores data in flat files.. Sometimes the data is sorted, but sometimes it's not. I'd like to sort the data in the files.

Now I could write the code to do this, from scratch. Is there an easier way?

Of course an inplace sort would be the best option. But I'll consider all options.

EDIT: All char* (strings) are the same length.

EDIT2:
This is some sample data
"the data is of fixed length\r\nthe Data is of fixed length\r\nthIS data is of fixed lengt\r\n"
This would represent three records of length 28... The app knows the length and though records do end in \r\n it shouldn't matter for this sort.

link|improve this question

63% accept rate
Are you talking about short text files that can be read into memory, or enormous files with millions of lines of text? If you can read them into memory, it's trivial, but for something larger scale a different approach would be needed. – Simon Howard Nov 24 '08 at 16:17
Well I'd like it if it would work for large files. It's for a pda and sometimes ram is not that handy (ha ha... handy~pda ha!) – baash05 Nov 24 '08 at 17:13
feedback

9 Answers

up vote 14 down vote accepted
template<size_t length> int less(const char* left, const char* right) {
    return memcmp(left, right, length) < 0;
}

std::sort(array, array + array_length, less<buffer_length>);
link|improve this answer
std::sort expects iterators as parameters. It will work on things like vectors, but I doubt working on an array. – Mehrdad Afshari Nov 24 '08 at 15:49
pointers are valid iterators – Leon Timmermans Nov 24 '08 at 15:54
My bad. You're right! Thanks for the point! – Mehrdad Afshari Nov 24 '08 at 15:59
are left and right contigious? The values in the array are not null terminated, but rather a hard coded length. int length = &right-&left; memcmp(left, right, length) < 0; – baash05 Nov 24 '08 at 16:54
baash05, well you should have told that to us. now that requires entirely different algorithms. memcmp and bind3rd. there is no such standard function object adaptor i think :) – Johannes Schaub - litb Nov 24 '08 at 17:09
show 7 more comments
feedback

Use the GNU sort program (externally) if you can't fit the data into RAM: it will sort arbitrary sized files and the larger the file, the smaller the additional cost of creating the process.

link|improve this answer
feedback

You can use the algorithms in the STL on arrays native datatypes, not just on STL containers. The other suggestion to use std::sort won't work as posted however, because strcmp returns a value that evaluates to true for all comparisons when the strings aren't the same, not just if the left hand side is less than the right hand side -- which is what std::sort wants; a binary predicate returning true of the left hand side is less than the right hand side.

This works:

struct string_lt : public std::binary_function<bool, char, char>
{
    bool operator()(const char* lhs, const char* rhs)
    {
    	int ret = strcmp(lhs, rhs);
    	return ret < 0;
    }
};

int _tmain(int argc, _TCHAR* argv[])
{
    char* strings [] = {"Hello", "World", "Alpha", "Beta", "Omega"};
    size_t numStrings = sizeof(strings)/sizeof(strings[0]);

    std::sort(&strings[0], &strings[numStrings], string_lt());

    return 0;
}
link|improve this answer
feedback

boost::bind can do it:

// ascending
std::sort(c, c + size,  boost::bind(std::strcmp, _1, _2) < 0); 

// descending
std::sort(c, c + size,  boost::bind(std::strcmp, _1, _2) > 0);

Edit: The strings are not null-terminated:

// ascending
std::sort(c, c + array_size,  boost::bind(std::memcmp, _1, _2, size) < 0); 

// descending
std::sort(c, c + array_size,  boost::bind(std::memcmp, _1, _2, size) > 0);
link|improve this answer
feedback

Probably the easiest way is to used the old stdlib.h function qsort. This should work:

qsort( array, num_elements, sizeof( char* ), strcmp )

Please note that this is standard C and only works reliable with English text.

If you have a list of String objects, then other things are possible in C++.

If you are on Linux and writing a gtk or Qt application then I would propose that you have a look at these libraries beforehand.

link|improve this answer
As with Mehrdad's answer, this is the wrong answer. qsort will be passing the const void pointer cast of a 'const char **' (double pointer), and strcmp() does not like that -- with good reason. – Jonathan Leffler Nov 24 '08 at 16:03
feedback

If the files are large and do not fit in RAM, you can use bin/bucket sort to split the data into smaller files and finally aggregate the pieces in a result file. Other responses show you how to sort each individual bucket file.

link|improve this answer
feedback

The canonical way to sort an array of character strings in C, and therefore an available but not necessarily recommended way to do so in C++, uses a level of indirection to strcmp():

static int qsort_strcmp(const void *v1, const void *v2)
{
    const char *s1 = *(char * const *)v1;
    const char *s2 = *(char * const *)v2;
    return(strcmp(s1, s2));
}

static void somefunc(void)   // Or omit the parameter altogether in C++
{
    char **array = ...assignment...
    size_t num_in_array = ...number of char pointers in array...
    ...
    qsort(array, num_in_array, sizeof(char *), qsort_strcmp);
    ...more code...
}
link|improve this answer
feedback

A few things come to mind:

  1. If your data is too big to fit into memory, you may want to just build up an index in-memory of file offsets, then memory-mapping the file to access the strings (depends on your OS).
  2. In-place is going to require a lot of memory copies. If you can, use a shell sort. Then once you know the final order, it's much easier to reorder the strings in-place in linear time.
  3. If the strings are all the same length, you really want a radix sort. If you're not familiar with a radix sort, here's the basic idea: Comparison-based sorting (which is what std::sort, qsort, and any other general-purpose sorting) always requires O(N log N) time. Radix sorting compares a single digit at a time (starting at str[0] and ending at str[K-1] for a K-lenth string), and overall can require only O(N) time to execute.

Consult the Internetfor a much better detailed description of radix sorting algorithms than I can provide. Aside from what I've said, I would avoid all of the other solutions that use standard libarary sorting facilities. They just aren't designed your particular problem, unfortunately.

link|improve this answer
feedback

You probably want to look into memory mapped files (see http://en.wikipedia.org/wiki/Memory-mapped_file), mmap() function (http://en.wikipedia.org/wiki/Mmap) on POSIX-complaint OSes. You'll essentially get a pointer to contiguous memory representing the file's contents.

The good side is that the OS will take care of loading parts of the file into memory and unloading them again, as needed.

One downside is that you'll need to resolve to some form of file locking to avoid corruption if more than one process is likely to access the file.

Another downside is that this doesn't guarantee good performance - to do that, you'll need a sorting algorithm that tries to avoid constantly loading and unloading pages (unless of course you have enough memory to load the entire file into memory).

Hope this has given you some ideas!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.