吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1090|回复: 9
收起左侧

[已解决] 大佬们求助一下排序算法

[复制链接]
头像被屏蔽
52pengcheng 发表于 2021-8-20 13:05
提示: 作者被禁止或删除 内容自动屏蔽

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

finillusion 发表于 2021-8-20 13:28
[JavaScript] 纯文本查看 复制代码
rank.sort(function(a,b){
 return b.time- a.time ;
 });

你好
加上这一段就可以了
头像被屏蔽
 楼主| 52pengcheng 发表于 2021-8-20 13:38
sinner123 发表于 2021-8-20 13:54
rank = rank.sort(function(a,b){
    return b.time- a.time ;
    });
console.log(rank = rank.sort(function(a,b){
    return b.score- a.score ;
    }));

根据上面那个改的,再排序一次就可以了
你运行这个
finillusion 发表于 2021-8-20 13:56
52pengcheng 发表于 2021-8-20 13:38
感谢大佬,但是我需要先为score排序,当score相同的情况下才对time排序

[JavaScript] 纯文本查看 复制代码
rank.sort(function(a,b){
 return (b.score + b.time) - (a.score + a.time)  ;
 });

你好
改成这样应该就可以了

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
52pengcheng + 1 + 1 我很赞同!

查看全部评分

pzx521521 发表于 2021-8-20 13:58
4L 有问题哦
[JavaScript] 纯文本查看 复制代码
rank.sort(function(a,b){
result =  b.score- a.score
if(result = 0){return result } 
result =  b.time- a.time
return result ;
 });
sinner123 发表于 2021-8-20 14:03
console.log(rank = rank.sort(function(a,b){
    return (b.score- a.score)+(b.time- a.time) ;
    }));
这也行也行
finillusion 发表于 2021-8-20 14:14
[JavaScript] 纯文本查看 复制代码
rank.sort(function(a,b){
if( (b.score - a.score) < 0){
return  (b.score - a.score)
}
 return b.time - a.time  ;
 });

应该这样写
刚刚我发的写法有点不严谨
头像被屏蔽
 楼主| 52pengcheng 发表于 2021-8-20 14:19
提示: 作者被禁止或删除 内容自动屏蔽
头像被屏蔽
 楼主| 52pengcheng 发表于 2021-8-20 14:22
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 22:43

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表