Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
9answers
3k views

Lexicographical sorting problem

I'm doing a problem that says concatenate the words to generate the lexicographically lowest possible string. from a competition. Take for example this string: jibw ji jp bw jibw The actual output ...
7
votes
8answers
174 views

What is the shortest way in .NET to sort strings starting with 1, 10 and 2 and respect the number ordering?

I need to sort file names as follows: 1.log, 2.log, 10.log But when I use OrderBy(fn => fn) it will sort them as: 1.log, 10.log, 2.log I obviously know that this could be done by writing another ...
6
votes
4answers
969 views

What's the simplest way of defining lexicographic comparison for elements of a class?

If I have a class that I want to be able to sort (ie support a less-than concept), and it has several data items such that I need to do lexicographic ordering then I need something like this: struct ...
5
votes
6answers
568 views

strcmp() but with 0-9 AFTER A-Z? (C/C++)

For reasons I completely disagree with but "The Powers (of Anti-Usability) That Be" continue to decree despite my objections, I have a sorting routine which does basic strcmp() compares to sort by its ...
3
votes
2answers
55 views

How is 'Jared' greater than 'Brittany'?

I'm looking in my book, and it doesn't explain it. Its telling me what a binary search tree is and it decided to use strings. Jared / \ Brittany Megan / \ / ...
3
votes
5answers
589 views

How do I sort a collection of Lists in lexicographic order in Scala?

If A has the Ordered[A] trait, I'd like to be able to have code that works like this val collection: List[List[A]] = ... // construct a list of lists of As val sorted = collection sort { _ < _ } ...
2
votes
5answers
241 views

C++: template within template: why “`>>' should be `> >' within a nested template argument list”

I know that when we are using template inside another template, we should write it like this: vector<pair<int,int> > s; and if we write it without the whitespace: ...
2
votes
6answers
1k views

How do I sort an ArrayList lexicographically?

I am trying to sort an ArrayList of Strings that represent card values. So, some cards contain letters ("King") and some contain Strings containing only a number ("7"). I know to use Collections.sort, ...
2
votes
3answers
857 views

sort with lexicographic order

I see the results from the following code, but I don't understand exactly how the or knows what to do in the following sort example: use Data::Dumper; $animals{'man'}{'name'} = 'paul'; ...
1
vote
3answers
168 views

Lexicographic Order in Java

How is the lexicographic order defined in Java especially in reference to special characters like !, . and so on? As an example does Sheepsystems offers this order But how does Java define it's ...
1
vote
1answer
76 views

Floating point serialization, lexicographical comparison == floating point comparison

I'm looking for a way to serialize floating points so that in their serialized form a lexicographical comparison is the same as a floating point comparison. I think it is possible by storing it in the ...
1
vote
2answers
427 views

awk / gawk asorti() problem

I've got following problem with gawk's asorti function: gawk 'BEGIN{ \ a[1]=6; \ a[2]=7; \ a[3]=8; \ a[21]=9; \ a[123]=10; \ t=asorti(a, o); \ for (i=1; i<=t; i++) { \ ...
1
vote
2answers
338 views

C++ What using for lexicographical_compare?

I wan to user the function lexicographical_compare in algorithms library in c++. But I do not know what to write as far as the using statement. For example using std::lexicographical_compare ?? ...
0
votes
2answers
262 views

Finding duplicate elements in an arraylist

I was wondering if there was a way to find duplicate elements in an arraylist. For more context of what I'm trying to do, I have an arraylist of strings. The strings each contain information about an ...
0
votes
2answers
593 views

String encoding of primitive types preserving lexicographic order

Does anyone know of a library for encoding a number of primitive types (like integers, floats, strings, etc) into a string but preserving the lexicographical order of the types? Ideally, I'm looking ...