This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Perl and the fly likes Sorting issue Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Languages » Perl
Reply Bookmark "Sorting issue" Watch "Sorting issue" New topic
Author

Sorting issue

Rob Hunter
Ranch Hand

Joined: Apr 09, 2002
Posts: 788
I have the following categories (1D, 2D, 3D, 2DD, and 3DD) and each one has a 1 to 20 rank associated with them. What is the easiest way to sort the values so they arrange like this :
fred rosenberger
lowercase baba
Bartender

Joined: Oct 02, 2003
Posts: 9950
    
    6

What have you tried?


Never ascribe to malice that which can be adequately explained by stupidity.
Rob Hunter
Ranch Hand

Joined: Apr 09, 2002
Posts: 788
I had copied a line such as :

but it wasn't working exactly as planned, the solution was replacing <=> with cmp.
fred rosenberger
lowercase baba
Bartender

Joined: Oct 02, 2003
Posts: 9950
    
    6

Rob Hunter wrote: the solution was replacing <=> with cmp.

I don't understand this.

regardless...

The first thing you need to do is define how EXACTLY you want things sorted. Posting an example is fine...but it is not a spec.

My guess is that you might need to break each category into components....so "1D 1" needs to be parsed into "1D" and "1". I believe that if you sort on the second part, then do another sort on the first (assuming you are using a stable sort), it will give you want you want.

There may be some tweaks needed on String vs numeric sorts, but again, without details of what you really need, it's hard to say.

 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Sorting issue
 
Similar Threads
how is this correct
Assignment To An Array Refrence
Multi Dimensional Arrays
Master Exam Array question
Multidimensional Arrays