Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Hash as Checklist

0 views
Skip to first unread message

basi

unread,
Apr 27, 2005, 10:18:09 PM4/27/05
to
Hello,
I need to check if a word is in a list. I'm using hash because the
lists can be long (i'm under the impression hash is faster than array).
Basically I'm only interested that a key exists. I have to create
entries like:

h = {
"one" => true,
"two" => true,
"three" => true,
"four" => true,
"five" => true
}

So h["one"] gives true, and h["seven"] returns nil. But typing the
dummy value "true" is a waste of effort, and there's an ugliness in
there. Is there a better way to design a simple checklist?

Thank you for your help
basi

Assaph Mehr

unread,
Apr 27, 2005, 10:37:10 PM4/27/05
to

irb(main):001:0> require 'set'
=> true
irb(main):002:0> s = Set.new %w{one two three four}
=> #<Set: {"three", "two", "one", "four"}>
irb(main):005:0> s.member? 'one'
=> true
irb(main):006:0> s.member? 'seven'
=> false

Jeremy Kemper

unread,
Apr 27, 2005, 10:45:10 PM4/27/05
to

Use a set:
require 'set'
words = %w(one two three four five).to_set
words.include? 'one' # => true
words.include? 'seven' # => false

http://www.ruby-doc.org/stdlib/libdoc/set/rdoc/

jeremy


basi

unread,
Apr 27, 2005, 11:24:34 PM4/27/05
to
Thanks to both Assaph and Jeremy for the quick reply. This is just what
I need!

Cheers!
basi

Dr Balwinder S Dheeman

unread,
Apr 28, 2005, 2:12:20 AM4/28/05
to
On 04/28/2005 07:48 AM, basi wrote:
> Hello,
> I need to check if a word is in a list. I'm using hash because the
> lists can be long (i'm under the impression hash is faster than array).

A hash have to store "key" => value pairs, how will be more efficient
than an array? and why?

> Basically I'm only interested that a key exists. I have to create
> entries like:
>
> h = {
> "one" => true,
> "two" => true,
> "three" => true,
> "four" => true,
> "five" => true
> }
>
> So h["one"] gives true, and h["seven"] returns nil. But typing the
> dummy value "true" is a waste of effort, and there's an ugliness in
> there. Is there a better way to design a simple checklist?
>
> Thank you for your help

irb(main):001:0> a = %w{one two three four five}
=> ["one", "two", "three", "four", "five"]
irb(main):002:0> a.member? 'one'
=> true
irb(main):003:0> a.member? 'seven'
=> false

Hope that helps.
--
Dr Balwinder Singh Dheeman Registered Linux User: #229709
CLLO (Chief Linux Learning Officer) Machines: #168573, 170593, 259192
Anu's Linux@HOME Distros: Ubuntu, Fedora, Knoppix
More: http://anu.homelinux.net/~bsd/ Visit: http://counter.li.org/

Brian Schröder

unread,
Apr 28, 2005, 9:33:07 AM4/28/05
to
On 28/04/05, Dr Balwinder S Dheeman <bsd.S...@cto.homelinux.net> wrote:
> On 04/28/2005 07:48 AM, basi wrote:
> > Hello,
> > I need to check if a word is in a list. I'm using hash because the
> > lists can be long (i'm under the impression hash is faster than array).
>
> A hash have to store "key" => value pairs, how will be more efficient
> than an array? and why?
>

because Array lookups are O(n) and Hash lookups should be O(1). To
find something in an Array you have to traverse it completely and will
find the entry you are searching in expected n/2 steps. For hashes
there exist different implementations, but basically you compute the
possible position of an object from the object and just take a look if
it is there. (Oversimplified).

best regards,

Brian

> [snip]

--
http://ruby.brian-schroeder.de/

multilingual _non rails_ ruby based vocabulary trainer:
http://www.vocabulaire.org/ | http://www.gloser.org/ | http://www.vokabeln.net/

0 new messages