在int []数组中找到最受欢迎的元素

在int []数组中找到最受欢迎的元素,第1张

在int []数组中找到最受欢迎的元素
public int getPopularElement(int[] a){  int count = 1, tempCount;  int popular = a[0];  int temp = 0;  for (int i = 0; i < (a.length - 1); i++)  {    temp = a[i];    tempCount = 0;    for (int j = 1; j < a.length; j++)    {      if (temp == a[j])        tempCount++;    }    if (tempCount > count)    {      popular = temp;      count = tempCount;    }  }  return popular;}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5615492.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存