简体   繁体   中英

How to loop to find maximum value in a Arraylist

I have this project that i'm making that you import your birthday, name, birthyear, and birthmonth. I'm trying to make a method that finds the most popular birthday for example, "the most popular date is the 16th with blank birthdays. I know I would have to loop around birthDayStats but how would I write that? here's my code, and the method i'm having trouble with is on the bottom.

import java.util.ArrayList;
import java.util.Collections;

public class Analyzer {
    // instance variables - replace the example below with your own
    private final static int DAYS_PER_MONTH = 31;
    private final static int MONTHS_PER_YEAR = 12;
    private int[] birthDayStats;
    private int[] birthMonthStats;
    private ArrayList<Person> people;

    /**
     * Constructor for objects of class Analyzer
     */
    public Analyzer() {
        this.people = new ArrayList<Person>();
        this.birthDayStats = new int[Analyzer.DAYS_PER_MONTH];
        this.birthMonthStats = new int[Analyzer.MONTHS_PER_YEAR];
    }

    public void addPerson(String name, int birthDay, int birthMonth, int birthYear) {
        Person person = new Person(name, birthDay, birthMonth, birthYear);
        if (person.getBirthDay() != -1 || person.getBirthMonth() != -1) {
            people.add(person);
            birthMonthStats[birthMonth - 1]++;
            birthDayStats[birthDay - 1]++;
        } else {
            System.out.println("Your current Birthday is " + birthDay + " or "
                    + birthMonth + " which is not a correct number 1-31 or 1-12 please put in a correct number ");
        }
    }

    public void printPeople() { //prints all people in form:   “  Name: Tom   Month: 5   Day: 2  Year: 1965”
        int index = 0;
        while (index < people.size()) {
            Person person = (Person) people.get(index);
            System.out.println(person);
            index++;
        }
    }

    public void printMonthList() { //prints the number of people born in each month Sample output to the right with days being similar
        int index = 0;
        while (index < birthMonthStats.length) {
            System.out.println("Month number " + (index + 1) + " has " + birthMonthStats[index] + " people");
            index++;
        }
    }

    public void mostPopularDay() { //finds the most popular Day of the year
        Object obj = Collections.mostPopularDay(birthDayStats);
        System.out.println(obj);
    }
}

You have to iterate over your array which holds the days, find the highest count and return the index of that value.

public int mostPopularDay() { //finds the most popular Day of the year
    int popularDay = 0;
    int max = -1;
    for(int i = 0; i < birthDayStats.length; i++) {
        if(birthDayStats[i] > max) {
            max = birthDayStats[i];
            popularDay = i;            
        }
    }
    return popularDay + 1;  //Adding +1 since there is no 0th day of the month
}

Keep in mind, that this does only return the most popular day for birthdays, not the most popular date. But I assume that this is what you wanted.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM