Hello All, I am new to programming, i have little problem with hash.
I want to retrieve first 10 items(key value pairs) from given hash{}
hashTable = {"a" => 1, "b" => 5, "c" => 2, "d" => 6, "e" => 4, "f" => 7,
"g" => 9, "h" => 5, "i" => 1, "j" => 8, "k" => 9, "l" => 3, "m" => 7,
"n" => 10, "o" => 12}
#sort hashTable on value by descending order
hashTable.sort {|a,b| -1*(a[1]<=>b[1])}
#now I want 10 items from sorted hashTable
I wrote some thing like
···
---------------------------------
hashTable.each do |key,value|
puts"Key: #{key} ==> #{value}"
# I want only first 10
end
------------------------------------
it prints all elements but i want only 10 items. please help.
Thanks,
Vikas
--
Posted via http://www.ruby-forum.com/ .
Hello All, I am new to programming, i have little problem with hash.
I want to retrieve first 10 items(key value pairs) from given hash{}
hashTable = {"a" => 1, "b" => 5, "c" => 2, "d" => 6, "e" => 4, "f" => 7,
"g" => 9, "h" => 5, "i" => 1, "j" => 8, "k" => 9, "l" => 3, "m" => 7,
"n" => 10, "o" => 12}
#sort hashTable on value by descending order
hashTable.sort {|a,b| -1*(a[1]<=>b[1])}
You need to save the results.
ary = hashTable.sort {|a,b| -1*(a[1]<=>b[1])}
ary is an array of key value pairs stored in an array, i.e. [['o' => 12], ['n' => 11], ...]
ary[0, 10] will return an array of the first 10 entries
To print out the first 10 entries:
ary[0, 10].each {|e| puts "Key: #{e[0} ==> #{[e[1]}"
Dave
···
On 13 Feb 2009, at 11:04, Vikas Gholap wrote:
#now I want 10 items from sorted hashTable
I wrote some thing like
---------------------------------
hashTable.each do |key,value|
puts"Key: #{key} ==> #{value}"
# I want only first 10
end
------------------------------------
it prints all elements but i want only 10 items. please help.
Thanks,
Vikas
--
Posted via http://www.ruby-forum.com/\ .
Hello All, I am new to programming, i have little problem with hash.
I want to retrieve first 10 items(key value pairs) from given hash{}
hashTable = {"a" => 1, "b" => 5, "c" => 2, "d" => 6, "e" => 4, "f" => 7,
"g" => 9, "h" => 5, "i" => 1, "j" => 8, "k" => 9, "l" => 3, "m" => 7,
"n" => 10, "o" => 12}
#sort hashTable on value by descending order
hashTable.sort {|a,b| -1*(a[1]<=>b[1])}
#now I want 10 items from sorted hashTable
I wrote some thing like
---------------------------------
hashTable.each do |key,value|
puts"Key: #{key} ==> #{value}"
# I want only first 10
end
------------------------------------
it prints all elements but i want only 10 items. please help.
Thanks,
Vikas
--
Posted via http://www.ruby-forum.com/\ .
i = 0
hashTable.each_pair {|key,value|
break if i >= 10
puts "Key: ..."
i+=1
}
Is this what you need?
···
--
"Configure complete, now type 'make' and PRAY."
(configure script of zsnes - www.zsnes.com )
Hi --
Hi,
I want to retrieve first 10 items(key value pairs) from given hash{}
hashTable.sort {|a,b| -1*(a[1]<=>b[1])}
You need to save the results.
ary = hashTable.sort {|a,b| -1*(a[1]<=>b[1])}
ary[0, 10] will return an array of the first 10 entries
ary[0, 10].each {|e| puts "Key: #{e[0} ==> #{[e[1]}"
As ary is only of temporary use, you don't need to create another
array ary[0,10]. I suggest:
10.times { puts "Key: %s ==> %s" % e.shift }
Do you mean ary.shift?
e.clear # optional
You can also save on shifts like this:
10.times {|i| # do something with ary[i] }
David
···
On Fri, 13 Feb 2009, Bertram Scharpf wrote:
Am Freitag, 13. Feb 2009, 21:08:19 +0900 schrieb Dave Baldwin:
On 13 Feb 2009, at 11:04, Vikas Gholap wrote:
--
David A. Black / Ruby Power and Light, LLC
Ruby/Rails consulting & training: http://www.rubypal.com
Coming in 2009: The Well-Grounded Rubyist (http://manning.com/black2\ )
http://www.wishsight.com => Independent, social wishlist management!
Robert_K1
(Robert K.)
13 February 2009 15:18
9
Did we have these already?
p hash_table.sort_by {|k,v| -v}.first(10)
p hash_table.sort_by {|k,v| v}.last(10).reverse
Cheers
robert
···
2009/2/13 Bertram Scharpf <lists@bertram-scharpf.de>:
Hi,
Am Freitag, 13. Feb 2009, 22:02:31 +0900 schrieb David A. Black:
On Fri, 13 Feb 2009, Bertram Scharpf wrote:
Am Freitag, 13. Feb 2009, 21:08:19 +0900 schrieb Dave Baldwin:
On 13 Feb 2009, at 11:04, Vikas Gholap wrote:
I want to retrieve first 10 items(key value pairs) from given hash{}
ary = hashTable.sort {|a,b| -1*(a[1]<=>b[1])}
As ary is only of temporary use, you don't need to create another
array ary[0,10]. I suggest:
10.times { puts "Key: %s ==> %s" % e.shift }
Do you mean ary.shift?
Arrgh. Of course.
The code may still be improved: Omit the multiplication by -1 in
the sort block.
ary = hashTable.sort { |a,b| a[1]<=>b[1] }
10.times { puts "Key: %s ==> %s" % ary.pop }
--
remember.guy do |as, often| as.you_can - without end
Hi,
ary = hashTable.sort { |a,b| a[1]<=>b[1] }
10.times { puts "Key: %s ==> %s" % ary.pop }
I'd still rather walk through the array than have to coordinate the
sort operation and a destructive array operation.
ary = hash_table.sort {|a,b| b[1] <=> a[1] }
# or sort_by {|a| -a[1]}
10.times {|i| # ary[i] ... }
By the way: This is starting to make fun. I don't know how the
internal sort mechanism works, but maybe something like this here
would be faster?
a = Array.new 200 do rand 0x1000 end
h =
a.each { |x|
if h.length < 10 or x > h.first then
h.push x
h.sort!
h.shift if h.length > 10
end
}
Bertram
···
Am Freitag, 13. Feb 2009, 23:29:05 +0900 schrieb David A. Black:
On Fri, 13 Feb 2009, Bertram Scharpf wrote:
--
Bertram Scharpf
Stuttgart, Deutschland/Germany
http://www.bertram-scharpf.de