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条)

报告相同问题?

悬赏问题

  • ¥15 关于#python#的问题:求帮写python代码
  • ¥15 LiBeAs的带隙等于0.997eV,计算阴离子的N和P
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 来真人,不要ai!matlab有关常微分方程的问题求解决,
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?