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

I have an array called Names[5] and one called scores[5][5]. Each row corresponds with the name in the respective index.

I need to find the highest score in the scores array and return the name that corresponds with it.

This is what I have so far:

int high = 0;
for(a=0; a<5; a++)
    for(b=0; b<5; b++)
        if(high<scores[a][b])
share|improve this question
2  
OK. So where are you stuck? How far have you gotten? What exactly do you need help figuring out? – Scott W Apr 29 '10 at 21:22
You need to use a better data structure. – Byron Whitlock Apr 29 '10 at 21:22
i know i am going to need a dubble for loop just now sure how the logic is going to work on it – dalton Apr 29 '10 at 21:23
int high = 0; for(a=0; a<5; a++) for(b=0; b<5; b++) if(high<scores[a][b]) THis is what i have so far – dalton Apr 29 '10 at 21:27
1  
Also get in to the habit of using braces even when you don't need to. Remember code is for humans to read not computers. The compiler doesn't care if you have "extra" braces or not, but as a human its better to be consistent and always have braces. It vastly improves readability – Pyrolistical Apr 29 '10 at 21:40

1 Answer

Just scan the matrix, and remember the best score and best name so far. Something like:

String[] names = {"a","b","c","d","e"};
int[][] scores = new int[5][5];
//... init scores

int best = Integer.MIN_VALUE;
String bestName = null;
for(int nm = 0;nm<5;nm++){
    for(int c = 0;c<5;c++){
        int score = scores[nm][c];
        if (score>=best){
            best = score;
            bestName = names[nm];
        }
    }
}
System.out.println(bestName);
share|improve this answer
ugh O(N^2) for something that should be O(1). Data structures people. – Byron Whitlock Apr 29 '10 at 21:44
What does the Int best = Integer.Min_value do – dalton Apr 29 '10 at 21:53
@Byron: Assuming that we have control on the process of collecting the scores, we can maintain the best score & person during this process, and then return it in O(1). But the question refers to a given situation where the data is already in a matrix. There is no better solution here than O(n^2) – Eyal Schneider Apr 29 '10 at 22:03
@dalton: I initialize the variable best with the smallest possible integer. This way I guarantee that the first score encountered in the double loop will override it and set the corresponding name as well. Any other initialization value may cause the loop to terminate with bestName == null – Eyal Schneider Apr 29 '10 at 22:08
Integer.Min_Value returns the smallest possible value of int. In this case, it initializes the best score variable with the minimum value of int. You could initialize best with 0, but the answerer doesn't know if negative scores are going to be in your array, which would return the wrong answer. The minimum value of int is negative 2^16. – Josh Smeaton Apr 29 '10 at 22:13
show 2 more comments

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.