java - 从链表中查找最大值

时间:2015-09-24 23:57:43

标签: java object linked-list find max

免责声明:我是一名非常早期的学生,我正在努力学习java。如果我遗漏任何重要信息,请告诉我。

我正在编写一个程序,提示用户对链表进行各种操作(添加,删除,更改值等),而不是存储字符串或某些原始数据类型我存储的类型为Student的对象(它基本上包含一个学生姓名的字符串和一个测试分数的整数),并坚持如何找到最大的测试分数,因为我不能找到最高的学生。

任何帮助都将不胜感激。

3 个答案:

答案 0 :(得分:0)

你可以有两个变量,一个是currentScore,另一个是newScore。然后遍历每个学生对象,获取测试值,然后进行比较。如果新分数较低,则保持最新。如果新分数较高,请将当前分数替换为新分数,并继续遍历。遍历列表时,得分最高

答案 1 :(得分:0)

您可以按照描述的其他答案迭代列表,也可以使用Collections.max方法。要使用此方法,您的Student类应实现comperable接口。

public class Student implements Comparable<Student>

并且您需要将compareTo方法添加到类:

@Override
public int compareTo(Student student)
{
    if (this.score > student.score)
    {
        return 1;
    }
    if (this.score < student.score)
    {
        return -1;
    }
    else
    {
        return 0;
    }
}

现在当你写Collections.max(list)时,你将获得得分最高的学生。

答案 2 :(得分:0)

我写了一个与你的案子相符的简单程序。

主要类别:

import java.util.*;
import java.lang.Math; 

public class FindHighestScore
{
  public static void main(String[] args)
  {
    LinkedList<Student> studentLinkedlist = new LinkedList<Student>();

    studentLinkedlist.add(new Student("John",1)); // Adding 5 students for testing
    studentLinkedlist.add(new Student("Jason",5));
    studentLinkedlist.add(new Student("Myles",6));
    studentLinkedlist.add(new Student("Peter",10)); // Peter has the highest score
    studentLinkedlist.add(new Student("Kate",4));

    int temp = 0; // To store the store temporary for compare purpose
    int position = 0; // To store the position of the highest score student

    for(int i = 0; i < studentLinkedlist.size(); i ++){
      if(studentLinkedlist.get(i).getScore() > temp){ 
        temp = studentLinkedlist.get(i).getScore(); 
        position = i; 
      }
    }

  System.out.println("Highest score is: " + studentLinkedlist.get(position).getName()); 
  System.out.println("Score: " + studentLinkedlist.get(position).getScore());


  }
}


学生构造函数类:

public class Student
{
  String name;
  int score;

  Student(){
  }

  Student(String name, int score){
    this.name = name;
    this.score = score;
  }

  String getName(){
    return this.name;
  }

  int getScore(){
    return this.score;
  }
}


上述程序产生如下结果:

Highest score is: Peter
Score: 10