莲花楼楼主


私信TA

用户名:dotcpp0719623

访问量:888

签 名:

总有人间一两风,填我十万八千梦

等  级
排  名 2223
经  验 2396
参赛次数 0
文章发表 31
年  龄 88
在职情况 学生
学  校 南京信息工程大学
专  业 海洋科学

  自我简介:

有人在通往牛逼的路上一路狂奔

解题思路:

注意事项:

参考代码:

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n=Integer.parseInt(scanner.next());
        int[] arr=new int[n];
        int i=0;
        while(i<n) {
        	arr[i++]=Integer.parseInt(scanner.next());
        }
        Arrays.sort(arr);//从小到大排序
        int maxNum=0;//众数
        int maxCount=0;//重数
        for(i=n-1;i>=0;i--) {//从大往小找众数,可以保证有多个众数时,取最小的数
        	int count=1;
        	for(int j=i-1;j>=0;j--) {//相同的数都是相邻的
        		if(arr[j]==arr[i]) {
        			count++;
        		}else {
        			break;
        		}
        	}
        	if(count>=maxCount) {//更新众数
        		maxNum=arr[i];
        		maxCount=count;
        	}
        }
        System.out.println(maxNum);
        System.out.println(maxCount);
    }
}


 

0.0分

0 人评分

  评论区

  • «
  • »