最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

sorting - Javascript: sort 2D array at first by second column desc, then by first column asc - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

1 Answer 1

Reset to default 11

Update/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);

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论