Sorting help

B

Binh Ly

Hello All,

I would like to request some helping with a sorting problem I have.

Given an array with values like this ["10.1", "7.4", "10.9", "10.11",
"10.10"]

when I sort it i get something like ["10.1", "10.10", "10.11", "10.9",
"7.4"]

What is the best way to sort such an array of strings?

What if the string was extended to "10.1.25".

Any advice would be greatly appreciated.

Thank you.

Binh
 
R

Ron Askew

I the values are actually numeric, they should be stored as numerics,
manipulated as numerics, and sorted as numerics.

So... the question is: WHY ARE THEY STRINGS?

-----Original Message-----
From: (e-mail address removed) [mailto:[email protected]]
Sent: Sunday, October 12, 2008 7:24 PM
To: ruby-talk ML
Subject: Sorting help

Hello All,

I would like to request some helping with a sorting problem I have.

Given an array with values like this ["10.1", "7.4", "10.9", "10.11",
"10.10"]

when I sort it i get something like ["10.1", "10.10", "10.11", "10.9",
"7.4"]

What is the best way to sort such an array of strings?

What if the string was extended to "10.1.25".

Any advice would be greatly appreciated.

Thank you.

Binh
 
M

Matthew Moss

I would like to request some helping with a sorting problem I have.
Given an array with values like this ["10.1", "7.4", "10.9", "10.11",
"10.10"]

when I sort it i get something like ["10.1", "10.10", "10.11", "10.9",
"7.4"]

What is the best way to sort such an array of strings?

What if the string was extended to "10.1.25".


I might do something like this:


arr.sort_by { |str| str.split('.').map { |x| x.to_i } }
 
S

Sebastian Hungerecker

Ron said:
I the values are actually numeric, they should be stored as numerics,
manipulated as numerics, and sorted as numerics.

So... the question is: WHY ARE THEY STRINGS?

PROBABLY BECAUSE THE OP REALIZED THAT 10.1.25 ISN'T REALLY A LEGAL NUMBER.
And he either did not think of storing it as [10,1,25] or maybe he reads it
from user input or from a file. Though of course the solution (to get
numerical sorting) still is to get it into that form (split(".").map(&:to_i))
and then sort.

HTH,
Sebastian
 
S

Sebastian Hungerecker

Binh said:
What is the best way to sort such an array of strings?

Having already given one (hopefully) helpful answer, I can't help that the way
you phrased your question (or more precisely the way you didn't specify what
you actually wanted), I was a little tempted to answer:
*That* is the best way to sort an array of strings.
 
M

Michael W. Ryder

Ron said:
I the values are actually numeric, they should be stored as numerics,
manipulated as numerics, and sorted as numerics.

So... the question is: WHY ARE THEY STRINGS?

The data may be coming from another source that the OP has no control
over. In the language I do most of my programming in, Business Basic,
everything is stored as a string, so 12.35 is stored as "12.25" instead
of it's binary representation.
When I have this problem in Business Basic what I do is add leading
zeros before storing the numbers in a file. The file system in Business
Basic allows me to store records in a file and automatically sorts them
by the key value. This means that you have to know in advance the size
of the numbers.
What I would do is store the strings as ["10.1", "07.4", "10.9",
"10.11", "10.10"] and this should sort properly. In the second case I
would store the number as "10.01.25". Now if the numbers are something
like TCP addresses this method probably won't work.


-----Original Message-----
From: (e-mail address removed) [mailto:[email protected]]
Sent: Sunday, October 12, 2008 7:24 PM
To: ruby-talk ML
Subject: Sorting help

Hello All,

I would like to request some helping with a sorting problem I have.

Given an array with values like this ["10.1", "7.4", "10.9", "10.11",
"10.10"]

when I sort it i get something like ["10.1", "10.10", "10.11", "10.9",
"7.4"]

What is the best way to sort such an array of strings?

What if the string was extended to "10.1.25".

Any advice would be greatly appreciated.

Thank you.

Binh
 
P

Peña, Botp

RnJvbTogQmluaCBMeSBbbWFpbHRvOmJpbmhAcGlnYmFieS5uZXRdIA0KIyBHaXZlbiBhbiBhcnJh
eSB3aXRoIHZhbHVlcyBsaWtlIHRoaXMgWyIxMC4xIiwgIjcuNCIsICIxMC45IiwgIjEwLjExIiwN
CiMgIjEwLjEwIl0NCiMgd2hlbiBJIHNvcnQgaXQgaSBnZXQgc29tZXRoaW5nIGxpa2UgWyIxMC4x
IiwgIjEwLjEwIiwgIjEwLjExIiwgIjEwLjkiLCAiNy40Il0NCiMgV2hhdCBpcyB0aGUgYmVzdCB3
YXkgdG8gc29ydCBzdWNoIGFuIGFycmF5IG9mIHN0cmluZ3M/DQojIFdoYXQgaWYgdGhlIHN0cmlu
ZyB3YXMgZXh0ZW5kZWQgdG8gIjEwLjEuMjUiLg0KDQpvdGhlcnMgaGF2ZSBzaG93biBzcGxpdCtt
YXAgDQoNCnlvdSBjYW4gYWxzbyBkbyBpdCB3IHRoZSBodW1ibGUgc2NhbmYgKHllcywgbGlrZSBj
J3Mgc2NhbmYpDQoNCmVnLA0KDQphLnNvcnRfYnl7fHh8IHguc2NhbmYgIiVkLiVkIn0NCiM9PiBb
IjcuNCIsICIxMC4xIiwgIjEwLjkiLCAiMTAuMTAiLCAiMTAuMTEiXQ0KDQo=
 
E

Erik Veenstra

What about this one?:

module Enumerable
def sort_number_word_other
sort_by do |x|
x.to_s.scan(/\d+|\w+|[^\d\w]+/).collect do |s|
[s.to_i, s]
end
end
end
end

It handles comparisons of strings like "ruby-1.8.7.tar.gz" pretty
well. It even knows how to sort [3, "2.1"] in "a way".
What is the best way to sort such an array of strings?

"best way"? Depends on the problem domain. There's no generic answer.

gegroet,
Erik V.
 
R

Robert Klemme

2008/10/13 Binh Ly said:
Hello All,

I would like to request some helping with a sorting problem I have.

Given an array with values like this ["10.1", "7.4", "10.9", "10.11",
"10.10"]

when I sort it i get something like ["10.1", "10.10", "10.11", "10.9",
"7.4"]

What is the best way to sort such an array of strings?

What if the string was extended to "10.1.25".

Any advice would be greatly appreciated.

My advice so far would be to state what order you want to achieve.
You just say what the output of a plain string sort is but not what
you want it to be.

Cheers

robert
 
J

Joe Wölfel

Hi All,

I'm looking for a Ruby audio API. Is there a good one already
available or is anyone in the process of working on one? I'd like
one that is easy to install and manage, such as a gem with no or
automatic dependencies. Also, I'd like a liberal license, at least
as liberal as LGPL or better yet BSD because I'd like to eventually
give away the tools I'm working on with the fewest possible
restrictions.

If I can't find one I'm considering writing one using something like
PortAudio. Would that make sense? If I were to do that does anyone
have any suggestions for how it should be done to make it work best
with Ruby?
 
R

Robert Klemme

I'm looking for a Ruby audio API.

Please do not hijack other threads. This is a completely different
topic which deserves its own thread. Thank you!

Kind regards

robert
 
G

Glen Holcomb

Please do not hijack other threads. This is a completely different topic
which deserves its own thread. Thank you!

Kind regards

robert
Maybe it's just me but I don't see any other conversation here but the audi=
o
question.

Joe,

I haven't used anything like what you are describing but there are some Rub=
y
Audio libraries:

http://hans.fugal.net/src/ruby-audio/doc/
http://raa.ruby-lang.org/cat.rhtml?category_major=3DLibrary;category_minor=
=3DAudio

-Glen

--=20
"Hey brother Christian with your high and mighty errand, Your actions speak
so loud, I can't hear a word you're saying."

-Greg Graffin (Bad Religion)
 
J

Joe Wölfel

My apologies.

How exactly did I hijack another thread? Please let me know so I can =20=

avoid doing it in the future.


Hi All,

I'm looking for a Ruby audio API. Is there a good one already =20
available or is anyone in the process of working on one? I'd like =20=
one that is easy to install and manage, such as a gem with no or =20
automatic dependencies. Also, I'd like a liberal license, at least =20=
as liberal as LGPL or better yet BSD because I'd like to eventually =20=
 
R

Robert Klemme

My apologies.
Accepted.

How exactly did I hijack another thread? Please let me know so I can
avoid doing it in the future.

I do not know how you did it, but in c.l.r (Usenet newsgroup) your topic
references "Sorting Help". Maybe you just replied to a message on that
thread.

Cheers

robert
 
G

Gregory Brown

I do not know how you did it, but in c.l.r (Usenet newsgroup) your topic
references "Sorting Help". Maybe you just replied to a message on that
thread.

Right, if you reply to a message and replace its subject, the
threading is still preserved from the original message. My guess is
the OP did that by accident, and the problem can be solved by starting
a new message rather than using reply and changing the subject.

It is only a good idea to change the subject within a thread to show a
topic that has diverged from the original but is still of the same
originating conversation. New conversations deserve new toplevel
threads.

-greg

--=20
Technical Blaag at: http://blog.majesticseacreature.com | Non-tech
stuff at: http://metametta.blogspot.com
 
R

Robert Klemme

Maybe it's just me but I don't see any other conversation here but the audio
question.

Where is "here"? I am looking at Usenet at the moment.

Cheers

robert
 
J

Joe Wölfel

Right, if you reply to a message and replace its subject, the
threading is still preserved from the original message. My guess is
the OP did that by accident, and the problem can be solved by starting
a new message rather than using reply and changing the subject.

It is only a good idea to change the subject within a thread to show a
topic that has diverged from the original but is still of the same
originating conversation. New conversations deserve new toplevel
threads.

-greg

Possible. I can't remember what exactly I was doing. I'll repost =20
in a fresh window. Again, I didn't mean to cause any trouble.
 
G

Glen Holcomb

Where is "here"? I am looking at Usenet at the moment.

Cheers

robert
I was reading in my email, It had shown as a new topic in gmail.

--=20
"Hey brother Christian with your high and mighty errand, Your actions speak
so loud, I can't hear a word you're saying."

-Greg Graffin (Bad Religion)
 
R

Robert Klemme

I was reading in my email, It had shown as a new topic in gmail.

Ah, this might be an explanation: I believe GMail's web frontend does
not consider mails with different subjects to be in the same thread.
That would explain, why you did not see this.

Cheers

robert
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,197
Messages
2,571,041
Members
47,643
Latest member
ashutoshjha_1101

Latest Threads

Top