作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用数组来存储文本中特定单词的出现次数。数据的格式为字:数字。我想按出现次数的降序(即按值)对数组进行排序。有没有一种巧妙的方法来做到这一点?或者我应该考虑使用不同的数据结构?
// This is how the array is filled.
var matches = ["word1", "word2", "word2", "word3", "word4", "word4", "word4"];
var count = {};
$.each(matches, function(key, value) {
if(!count[value])
count[value] = 1;
else
count[value]++;
});
循环之后,这是我得到的并希望按降序值排序:
count = { 'word1':'1', 'word2':'2', 'word3':'1', 'word4':'3' };
我真正希望它看起来像什么(按值排序):
count = { 'word4':'3', 'word2':'2', 'word1':'1', 'word3':'1' };
最佳答案
试试这个:
function sortmyway(data_A, data_B)
{
return (data_A - data_B);
}
var list =[ 39, 108, 21, 55, 18, 9]
list.sort(sortmyway) //[9, 18, 21, 39, 55, 108]
请参阅working example here .
关于jquery - 如何在 jQuery 中对数组进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6329411/
我是一名优秀的程序员,十分优秀!