What does it mean to numerically sort alpha characters in opposite of lexicographic, like in K&R 5-14 with option -n
Regards
|
What does it mean to numerically sort alpha characters in opposite of lexicographic, like in K&R 5-14 with option -n Regards
| ||||
|
feedback
|
|
In the second edition of K&R, section 5.11, the comparison function
is used for numeric sorting (as opposed to using
which converts a string to its double-precision floating-point equivalent. In the example, sorting with the | |||||
|
feedback
|
|
It means to treat a string as a single numeric value instead of as a series of characters that happen to be numeric. K&R shows you the | |||||||
feedback
|
-noption is applied to fields in the sorting program illustrated in chapter 5. – Rob Kennedy May 17 '11 at 20:17