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

I currently have a nxn array of ints. I plan to initialize all the cells within the array with infinity and later change it if a value being compared to the cell is lower than the value inside the cell. Here is the pseudo-code of what I came up with so far, using -1 to represent infinity. What do you think? Is this the most efficient way, any bugs?

if(table[i][j] == -1 || (table[i][j] != -1 && table[i][j] > value)
    then table[i][j] = value
share|improve this question

3 Answers

up vote 2 down vote accepted

I would instead start with Integer.MAX_VALUE. This way, the code could be simpler :

if(table[i][j] > value) {
     table[i][j]=value;
}

Notice that, were your array to contain doubles, you could even go as far as using Double.POSITIVE_INFINITY.

share|improve this answer
Thank you. More specifically I am implementing the Floyd-Warshall algorithm. So if table[i][j] > table[i][k] + table[k][j] then table[i][j] = table[i][k] + table[k][j]. If ik and kj were both MAX_VALUEs, would this upset the program in any way since they are being added? – sudo Nov 18 '10 at 10:17
Well, as its name suggest, Integer.Max_VALUE is the maximum possible value in the Integer world. Were you to add even 1to it, you'll go out of Integer bounds and have as result Integer.MIN_VALUE-1 (yep, Integers are in fact circular). – Riduidel Nov 18 '10 at 10:46

If you are sure that the value -1 can be treated as a "reserved" value, you should be fine with such approach.

You could also consider encapsulating the datatype in some PossiblyInfinitInteger which has a boolean of whether or not it is set to infinity. Perhaps an overkill, I don't know.

share|improve this answer
  1. if(table [i][j] == -1 || table[i][j] > value) then ... does the same. I'm not sure, but the compiler may take care of this.
  2. If -1 is reserved, and the values cannot be less than 0, your approach is correct, just compare table[i][j] < value and not visa versa.
  3. If using -1 as a reserved value is a problem, use Integer.MAX_VALUE: if(table[i][j] == Integer.MAX_VALUE) then table[i][j] = value;
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.