谁能帮我用JavaScript排序二维数组?
它将具有以下格式的数据:
[12, AAA]
[58, BBB]
[28, CCC]
[18, DDD]
排序时应如下所示:
[12, AAA]
[18, DDD]
[28, CCC]
[58, BBB]
因此,基本上,按第一列排序。
干杯
谁能帮我用JavaScript排序二维数组?
它将具有以下格式的数据:
[12, AAA]
[58, BBB]
[28, CCC]
[18, DDD]
排序时应如下所示:
[12, AAA]
[18, DDD]
[28, CCC]
[58, BBB]
因此,基本上,按第一列排序。
干杯
Answers:
就这么简单:
var a = [[12, 'AAA'], [58, 'BBB'], [28, 'CCC'],[18, 'DDD']];
a.sort(sortFunction);
function sortFunction(a, b) {
if (a[0] === b[0]) {
return 0;
}
else {
return (a[0] < b[0]) ? -1 : 1;
}
}
我邀请您阅读文档。
如果要按第二列排序,可以执行以下操作:
a.sort(compareSecondColumn);
function compareSecondColumn(a, b) {
if (a[1] === b[1]) {
return 0;
}
else {
return (a[1] < b[1]) ? -1 : 1;
}
}
<
或进行比较>
。无论如何,我喜欢更新:)
最好的方法是使用以下内容,因为第一栏中可能有重复的值。
var arr = [[12, 'AAA'], [12, 'BBB'], [12, 'CCC'],[28, 'DDD'], [18, 'CCC'],[12, 'DDD'],[18, 'CCC'],[28, 'DDD'],[28, 'DDD'],[58, 'BBB'],[68, 'BBB'],[78, 'BBB']];
arr.sort(function(a,b) {
return a[0]-b[0]
});
试试这个
//WITH FIRST COLUMN
arr = arr.sort(function(a,b) {
return a[0] - b[0];
});
//WITH SECOND COLUMN
arr = arr.sort(function(a,b) {
return a[1] - b[1];
});
注意:原始答案使用的是大于(>)而不是减号(-),这就是注释所指的错误。
使用箭头功能,并按第二个字符串字段排序
var a = [[12, 'CCC'], [58, 'AAA'], [57, 'DDD'], [28, 'CCC'],[18, 'BBB']];
a.sort((a, b) => a[1].localeCompare(b[1]));
console.log(a)
如果您像我一样,就不想在每次更改排序依据时都需要更改每个索引。
function sortByColumn(a, colIndex){
a.sort(sortFunction);
function sortFunction(a, b) {
if (a[colIndex] === b[colIndex]) {
return 0;
}
else {
return (a[colIndex] < b[colIndex]) ? -1 : 1;
}
}
return a;
}
var sorted_a = sortByColumn(a, 2);
没什么特别的,只是节省了从数组中返回某个索引处的值所花费的成本。
function sortByCol(arr, colIndex){
arr.sort(sortFunction)
function sortFunction(a, b) {
a = a[colIndex]
b = b[colIndex]
return (a === b) ? 0 : (a < b) ? -1 : 1
}
}
// Usage
var a = [[12, 'AAA'], [58, 'BBB'], [28, 'CCC'],[18, 'DDD']]
sortByCol(a, 0)
console.log(JSON.stringify(a))
// "[[12,"AAA"],[18,"DDD"],[28,"CCC"],[58,"BBB"]]"
a[colIndex]
一次又一次地使用,但是我在这里捉住了它a = a[colIndex]
。效率更高。2.我使用的口味不同if
,使其更短。3.函数返回arr
的结果不是我返回的,sortByCol
这意味着我的函数无法用于创建另一个引用。希望能帮助到你!
如果要基于第一列(包含数字值)进行排序,请尝试以下操作:
arr.sort(function(a,b){
return a[0]-b[0]
})
如果要基于第二列(包含字符串值)进行排序,请尝试以下操作:
arr.sort(function(a,b){
return a[1].charCodeAt(0)-b[1].charCodeAt(0)
})
对于第二种情况,PS,您需要在它们的ASCII值之间进行比较。
希望这可以帮助。
由于我的用例涉及数十列,因此我扩展了@jahroy的答案。(也才意识到@ charles-clayton有相同的想法。)
我传递了要排序的参数,并使用所需的索引重新定义了sort函数,以进行比较。
var ID_COLUMN=0
var URL_COLUMN=1
findings.sort(compareByColumnIndex(URL_COLUMN))
function compareByColumnIndex(index) {
return function(a,b){
if (a[index] === b[index]) {
return 0;
}
else {
return (a[index] < b[index]) ? -1 : 1;
}
}
}
站在charles-clayton和@ vikas-gautam的肩膀上,我添加了字符串测试,如果一列具有OP中的字符串,则需要进行字符串测试。
return isNaN(a-b) ? (a === b) ? 0 : (a < b) ? -1 : 1 : a-b ;
该测试isNaN(a-b)
确定字符串是否不能强制为数字。如果他们可以,则a-b
测试有效。
请注意,对混合类型的列进行排序将始终提供有趣的结果,因为严格相等性测试(a === b)
将始终返回false。
在此处查看MDN
这是Logger测试的完整脚本-使用Google Apps脚本。
function testSort(){
function sortByCol(arr, colIndex){
arr.sort(sortFunction);
function sortFunction(a, b) {
a = a[colIndex];
b = b[colIndex];
return isNaN(a-b) ? (a === b) ? 0 : (a < b) ? -1 : 1 : a-b ; // test if text string - ie cannot be coerced to numbers.
// Note that sorting a column of mixed types will always give an entertaining result as the strict equality test will always return false
// see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Equality_comparisons_and_sameness
}
}
// Usage
var a = [ [12,'12', 'AAA'],
[12,'11', 'AAB'],
[58,'120', 'CCC'],
[28,'08', 'BBB'],
[18,'80', 'DDD'],
]
var arr1 = a.map(function (i){return i;}).sort(); // use map to ensure tests are not corrupted by a sort in-place.
Logger.log("Original unsorted:\n " + JSON.stringify(a));
Logger.log("Vanilla sort:\n " + JSON.stringify(arr1));
sortByCol(a, 0);
Logger.log("By col 0:\n " + JSON.stringify(a));
sortByCol(a, 1);
Logger.log("By col 1:\n " + JSON.stringify(a));
sortByCol(a, 2);
Logger.log("By col 2:\n " + JSON.stringify(a));
/* vanilla sort returns " [
[12,"11","AAB"],
[12,"12","AAA"],
[18,"80","DDD"],
[28,"08","BBB"],
[58,"120","CCC"]
]
if col 0 then returns "[
[12,'12',"AAA"],
[12,'11', 'AAB'],
[18,'80',"DDD"],
[28,'08',"BBB"],
[58,'120',"CCC"]
]"
if col 1 then returns "[
[28,'08',"BBB"],
[12,'11', 'AAB'],
[12,'12',"AAA"],
[18,'80',"DDD"],
[58,'120',"CCC"],
]"
if col 2 then returns "[
[12,'12',"AAA"],
[12,'11', 'AAB'],
[28,'08',"BBB"],
[58,'120',"CCC"],
[18,'80',"DDD"],
]"
*/
}