douhui8025 2014-07-16 16:36
浏览 29
已采纳

准确地从单维数组中设置排名

I would like to display some array data in relation to a competition, each player is ranked by the number of points they have, however if a player has the same amount of points to somebody else they should both have the exact same ranking position.

For instance...

1st     Bob     500pts
2nd     Joe     350pts
3rd     Tom     250pts
3rd     Tim     250pts
5th     Jay     100pts

In this instance, as Tom & Tim have the exact same number of points they should be joint third, making the next person down 5th (rather than 4th), can anyone suggest the best way to achieve this with a simple array similar to follows

array('Bob' => 500, 'Joe' => '350', 'Tom' => '250', 'Tim' => '250', 'Jay' => '100');

Can anyone suggest the 'cleanest' solution for achieving this

  • 写回答

4条回答 默认 最新

  • douduoquan2824 2014-07-16 16:59
    关注

    This code will work for you:

    $array = array('Bob' => 500, 'Joe' => '350', 'Tom' => '250', 'Tim' => '250', 'Jay' => '100');
    arsort($array, SORT_NUMERIC);
    
    $previousPoints = null;
    $position = $total = 1;
    foreach($array as $name=>$points) {
       if ($points != $previousPoints) {
           $position = $total;
       }
    
       echo $position.' '.$name.' '.$points."
    ";
    
       $previousPoints = $points;
       $total++;
    }
    

    Online demo here.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历