admin管理员组文章数量:1344203
I have so called 2D array called myarr with dozen rows and 2 column. Its contents is as follows:
myarr[0][0]='John'
myarr[0][1]=48
myarr[1][0]='Ann'
myarr[1][1]=36
myarr[2][0]='Sean'
myarr[2][1]=18
...
And I would like to sort it by second column first descending, then by first column ascending, like this one:
John 48
Ann 36
Bob 36
Carl 36
Sean 18
Dean 17 ..
By using JavaScript and I tried something like this:
myarr.sort(function(a, b){
a = a[1]+a[0];
b = b[1]+b[0];
return a == b ? 0 : (a > b ? 1 : -1)
})
But this way sort by column 2 asc (0 - 85) then by column 1 asc (A - Z). Where I made error? Thank you.
I have so called 2D array called myarr with dozen rows and 2 column. Its contents is as follows:
myarr[0][0]='John'
myarr[0][1]=48
myarr[1][0]='Ann'
myarr[1][1]=36
myarr[2][0]='Sean'
myarr[2][1]=18
...
And I would like to sort it by second column first descending, then by first column ascending, like this one:
John 48
Ann 36
Bob 36
Carl 36
Sean 18
Dean 17 ..
By using JavaScript and I tried something like this:
myarr.sort(function(a, b){
a = a[1]+a[0];
b = b[1]+b[0];
return a == b ? 0 : (a > b ? 1 : -1)
})
But this way sort by column 2 asc (0 - 85) then by column 1 asc (A - Z). Where I made error? Thank you.
Share Improve this question edited Dec 21, 2015 at 4:50 Thilina Sampath 3,7737 gold badges42 silver badges66 bronze badges asked Jul 3, 2013 at 18:41 Ludus HLudus H 2392 silver badges16 bronze badges 1- possible duplicate of Javascript, how do you sort an array on multiple columns? – tuespetre Commented Jul 3, 2013 at 19:12
1 Answer
Reset to default 11Update/note: this is a great pact sorting function for your situation that also supports strings with non-ASCII characters. I would consider this to be an "improvement" to my answer, only at the cost of being less easy to understand except to someone who knows what is going on:
myarr.sort(
function(a,b) {
return b[1]-a[1] || a[0].localeCompare(b[0]);
}
);
Original suggested answer: This code will take the data you gave (randomized) and produce the output sorted as you desired.
myarr = [
['Dean', 17],
['John', 48],
['Ann', 36],
['Sean', 18],
['Bob', 36],
['Carl', 36]
];
myarr.sort(
function(a,b) {
if (a[1] == b[1])
return a[0] < b[0] ? -1 : 1;
return a[1] < b[1] ? 1 : -1;
}
);
alert(myarr);
本文标签:
版权声明:本文标题:sorting - Javascript: sort 2D array at first by second column desc, then by first column asc - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743742347a2531127.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论