If a is the array, I want a.index(a.max), but something more Ruby-like. It should be obvious, but I'm having trouble finding the answer at so and elsewhere. Obviously, I am new to Ruby.

Cary

link|improve this question

80% accept rate
1  
I think you've got it. What's non-rubylike about that? – Ben Jan 27 '10 at 19:52
Ben, I was looking for something like a.max_index. Guess it's not built in. – Cary Swoveland Jan 29 '10 at 18:28
Even if the function you want is not built in, you can still add a .max_index member to the Array class. Here's an example of extending String or Integer with a custom member: hawkee.com/snippet/1260 – bta Jan 29 '10 at 22:58
Thanks for the suggestion--another nice feature of Ruby. Were I to do as you suggest, and .max_index were added as a built-in Array method in a future version of Ruby, would my addition of .max_index override the built-in method, or cause an error? If the latter, I assume I could have my code (in adding .max_index) check if Array has a built-in method of the same name, but then there's the risk that the built-in .max_index might have a different interpretation. Another option would be to create a subclass of Array and add .max_index to the latter. What would you suggest? – Cary Swoveland Feb 4 '10 at 22:28
feedback

4 Answers

up vote 24 down vote accepted

For Ruby 1.8.7 or above:

a.each_with_index.max[1]

It does one iteration. Not entirely the most semantic thing ever, but if you find yourself doing this a lot, I would wrap it in an index_of_max method anyway.

link|improve this answer
Wow. How does this do what it does? – Wayne Conrad Jan 27 '10 at 20:14
Agreed - how's this one work? – bergyman Jan 27 '10 at 20:15
Aaah, got it. each_with_index.max returns an array with the first element being the value and the second being the index of it. Very nice, Chuck. – bergyman Jan 27 '10 at 20:24
Although actually still foggy as to why exactly it returns an array like this...heh. – bergyman Jan 27 '10 at 20:26
10  
each_with_index without a block returns an enumerator that gives the item and its index. We then send max to this enumerator, which does the standard max algorithm on item-index pairs. Array.<=> is implemented so that the first item determines the ordering (unless there's a tie, in which case the second is compared, and so on), so this works basically the same as doing max on an array of the values themselves. Then to get the index, we ask for the second item of the result (since we got a series of [value, index] pairs from each_with_index). – Chuck Jan 27 '10 at 20:32
show 4 more comments
feedback

In ruby 1.9.2 I can do this;

arr = [4, 23, 56, 7]
arr.rindex(arr.max)  #=> 2
link|improve this answer
feedback
a = [1, 4 8]
a.inject(a[0]) {|max, item| item > max ? item : max }

At least it's Ruby-like :)

link|improve this answer
Dammit! I was cooking up a solution using inject - you beat me to it! ;) – bergyman Jan 27 '10 at 20:08
Also - original question was to get the index, so this would have to be changed to: a.inject(0) {|index, num| num > a[index] ? a.find_index(num) : index} – bergyman Jan 27 '10 at 20:11
feedback

If you do an array.sort!, then the largest element will be the last one (array.last) and will have index array.length-1.

link|improve this answer
I expect there was no expressed support for your solution merely because sorting an array is an inefficient way of finding the max. – Cary Swoveland Jan 29 '10 at 18:33
I agree, sorting an array just to find the max is inefficient. I mentioned it because I didn't know what else was being done with the array, so I thought I'd mention it in case the OP was going to sort it anyway for processing. – bta Jan 29 '10 at 22:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.