Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I get the highest integer in a table in Lua?

share|improve this question

5 Answers

math.max(unpack({1, 2, 3, 4, 5}))
share|improve this answer
1  
This will not work for larger tables, as there is a limit for a number of arguments and number of return values in each Lua implementation. – Alexander Gladysh Mar 3 '11 at 12:04
@AlexanderGladysh, you are right! Nice observation! – milanogc Mar 3 '11 at 12:10
Is there a specific amount of arguments allowed in math.max()? It seems like the most "official" way to do things. – Jeremy Mar 3 '11 at 15:21

A generic function for achieving this:

function max(t, fn)
    if #t == 0 then return nil, nil end
    local key, value = 1, t[1]
    for i = 2, #t do
        if fn(value, t[i]) then
            key, value = i, t[i]
        end
    end
    return key, value
end

Which is used like this:

print(max({1,2,3,4,1,2,37,1,0}, function(a,b) return a < b end)) --> 7 37
share|improve this answer
loltable = {1, 2, 3, 4, 1, 2, 37, 1, 0}
table.sort(loltable)
print(loltable[#loltable])
share|improve this answer

If your table is an array (only numeric indices >0) then use table.sort and take t[#t] (however, this changes the table).

Other approach would be like this

m={0,0}
for k,v in pairs(t) do
    if m[1]<v then
         m[1]=v
         m[2]=k
    end
end
print("Maximum of "..m[1].." at index "..m[2])
share|improve this answer
1  
Lua table indexes start at 1. – Alexander Gladysh Mar 3 '11 at 12:08
That's true and false at the same time. If you do t={"a"}, then t[1] will indeed be "a". But you can start indexing wherever you want, if you just keep in mind that the other indices will end up in the hash part of the table. So t={[0]=0,1,2,3} or even `t={[-123]="a",[-122]="b",'c'} are equally valid. But on those tables the table.sort function won't work, as this only works for arrays with index>0 and no holes. – jpjacobs Mar 3 '11 at 15:11
shouldn't it be: .." at index " ..m[1]) ? – quinmars Mar 3 '11 at 17:41
Right, And that's probably what Alexander was aiming at too... fixed! – jpjacobs Mar 3 '11 at 20:38
@jpjacobs, the objection to m[0] is due to the initializer m={0,0} which initialized m[1] and m[2] but not m[0]. That will result in the compare on the third line complaining about comparing and integer with nil. – RBerteig Mar 4 '11 at 20:05
show 1 more comment

Lua comes with a function to get the highest integer key if thats what you wanted...

table.maxn
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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