How do you sort an array of strings naturally in different programming languages? Post your implementation and what language it is in in the answer.
|
7
|
|||
|
|
|
JavaScript
|
||
|
|
|
|
I use this C# implementation. |
||
|
|
|
|
By different language do you mean natural alphabetic order in the typical alphabet of any given language? There's no one algorithm that can do this - it depends entirely on the language and its alphabet. Different languages, I am sure, have different ways of sorting things. Many languages don't even have alphabets, as we think of them. Chinese, for example... I'm not sure how their dictionaries are arranged, but it definitely isn't by spelling. You'll have to write (or find a library of) natural sorting algorithms for each language you want to implement. |
||
|
|
|
|
For MySQL, I personally use code from a Drupal module, which is available at http://cvs.drupal.org/viewvc.py/drupal/contributions/modules/natsort/natsort.install.mysql?revision=1.3.2.1&view=markup Basically, you execute the posted SQL script to create functions, and then use Here's a readme about the function: http://cvs.drupal.org/viewvc.py/drupal/contributions/modules/natsort/README.txt?hideattic=0&revision=1.4&view=markup |
||
|
|
|
|
If the OP is asking about idomatic sorting expressions, then not all languages have a natural expression built in. For c I'd go to
to sort the arguments into lexical order. Unfortunately this idiom is rather hard to parse for those not used the ways of c. Suitably chastened by the downvote, I actually read the linked article. Mea culpa. In anycase the original code did not work, except in the single case I tested. Damn. Plain vanilla c does not have this function, nor is it in any of the usual libraries. The code below sorts the command line arguments in the natural way as linked. Caveat emptor as it is only lightly tested.
This approach is pretty brute force, but it is simple and can probably be duplicated in any imperative language. |
|||
|
|
|
|
In C++ I use this example code to do natural sorting. The code requires the boost library. |
||
|
|
|
|
I just use StrCmpLogicalW. It does exactly what Jeff is wanting, since it's the same API that explorer uses. Admittedly, it's not portable. In C++:
|
|||
|
|
|
Here's a cleanup of the code in the article the question linked to:
But actually I haven't had occasion to sort anything this way. |
|||
|
|
|
|
Here's how you can get explorer-like behaviour in Python:
|
|||
|
|
|
|
Just a link to some nice work in Common Lisp by Eric Normand: http://www.lispcast.com/wordpress/2007/12/human-order-sorting/ |
|||
|
|
|
|
For Tcl, the -dict (dictionary) option to lsort:
|
||
|
|
|
|
Note that for most such questions, you can just consult the Rosetta Code Wiki. I adapted my answer from the entry for sorting integers. In a system's programming language doing something like this is generally going to be uglier than with a specialzed string-handling language. Fortunately for Ada, the most recent version has a library routine for just this kind of task. For Ada 2005 I believe you could do something along the following lines (warning, not compiled!):
Example use:
|
|||
|
|
|
|
In C, this solution correctly handles numbers with leading zeroes:
If you want to use it with
And you can do something on the order of
|
||
|
|
