const sort_fun = {
名称: (curr_data, is_desc) =>
curr_data.children.sort((a, b) => {
if (is_desc) {
return a.pinyin[0] < b.pinyin[0] ? 1 : -1
}
return a.pinyin[0] < b.pinyin[0] ? -1 : 1
}),
类型: (curr_data, is_desc) =>
curr_data.children.sort((a, b) => {
if (is_desc) {
return a.suffix < b.suffix ? 1 : -1
}
return a.suffix < b.suffix ? -1 : 1
}),
大小: (curr_data, is_desc) =>
curr_data.children.sort((a, b) => {
if (is_desc) {
return a.bytes < b.bytes ? 1 : -1
}
return a.bytes < b.bytes ? -1 : 1
}),
时间: (curr_data, is_desc) =>
curr_data.children.sort((a, b) => {
if (is_desc) {
return a.timestamp.mtime < b.timestamp.mtime ? 1 : -1
}
return a.timestamp.mtime < b.timestamp.mtime ? -1 : 1
}),
}
因为 a.pinyin[0]
的原因,我不知道怎么用 a[..]
的方式简化代码
谢谢
function sortFactory(names) {
return (curr_data, is_desc) =>
curr_data.children.sort((a, b) => {
if (is_desc) {
return getValue(a, names) < getValue(b, names) ? 1 : -1
}
return getValue(a, names) < getValue(b, names) ? -1 : 1
});
}
function getValue(obj, names) {
return names.reduce((pre, cur) => pre[cur], obj)
}
function buildSort<T, D>(getData: (item: T) => D, desc = false) {
return desc
? (a: T, b: T) => (getData(a) < getData(b) ? 1 : -1)
: (a: T, b: T) => (getData(a) < getData(b) ? -1 : 1)
}
// 名称
curr_data.children.sort(buildSort(i => i.pinyin[0]))
// 类型
curr_data.children.sort(buildSort(i => i.suffix))
// 大小
curr_data.children.sort(buildSort(i => i.bytes))
// 时间
curr_data.children.sort(buildSort(i => i.timestamp.mtime))
将原有的四个独立的排序函数合并为一个通用的 sortData 方法,通过传入不同的参数来适应不同的属性和排序方向。
const sortFun = {
// 通用排序方法
sortData: function(curr_data, prop, is_desc) {
// 根据 is_desc 的值确定排序的方向
const direction = is_desc ? 1 : -1;
// 使用 sort 方法对 curr_data.children 数组进行排序
// 注意这里使用了箭头函数
return curr_data.children.sort((a, b) => {
// 通过 prop 参数指定的属性名获取 a 和 b 的属性值
// 如果属性是嵌套的,例如 'timestamp.mtime',这里会递归地访问到这个深层属性
const aValue = prop.split('.').reduce((o, i) => o[i], a);
const bValue = prop.split('.').reduce((o, i) => o[i], b);
// 比较两个属性值
if (aValue < bValue) {
// 如果 a 的属性值小于 b 的属性值,则返回负数(升序)或正数(降序),根据 direction 的值
return direction * -1;
}
if (aValue > bValue) {
// 如果 a 的属性值大于 b 的属性值,则返回正数(升序)或负数(降序),根据 direction 的值
return direction * 1;
}
// 如果两个属性值相等,则返回 0,表示它们在排序中视为相等
return 0;
});
},
};
// 使用示例:
// 调用 sortData 方法进行排序
// 第一个参数是当前要排序的数据
// 第二个参数是要基于哪个属性进行排序
// 第三个参数是是否为降序排序
sortFun.sortData(curr_data, 'pinyin', false); // 升序排序 pinyin 属性
sortFun.sortData(curr_data, 'suffix', true); // 降序排序 suffix 属性
sortFun.sortData(curr_data, 'bytes', false); // 升序排序 bytes 属性
sortFun.sortData(curr_data, 'timestamp.mtime', true); // 降序排序 timestamp.mtime 属性
我认为代码(如下)已经优化(只需使用比相同逻辑的初始版本更少的变量) > 在优化过程中,我应该考虑哪些因素? 这是代码(也在jsfiddle上) 这是代码的解释。“处理”函数在数组中查找相同的值,对于每个相同的值,它通过将一个数字挂起到该值来更改值,“数字”表示它在数组中找到的值的计数。 例如arr=["x","x","y","z"]将返回["x(1)","x(2)","y","z"]"y"和"z
请问,想要忽略大小写,请问应该如何优化呢?
输出: 代码能走通,结果也正常,问题是优化,可能还有未顾及到的地方。 谢谢
本文向大家介绍分享javascript实现的冒泡排序代码并优化,包括了分享javascript实现的冒泡排序代码并优化的使用技巧和注意事项,需要的朋友参考一下 冒泡排序:就是将一个数组中的元素按照从大到小或者从小到大的顺序进行排列。 第一轮比较:8,7,6,5,4,3,2,1,9 交换了8次 i=0 j=array.length-1-i 第二轮比较:7,6,5,4,3,
本文向大家介绍请解释下如下js代码对数组排序后的输出结果相关面试题,主要包含被问及请解释下如下js代码对数组排序后的输出结果时的应答技巧和注意事项,需要的朋友参考一下 javascript sort默认排序原理
请问如何让ar1这种ip排序,js可以实现吗? 另外,我希望是用换行符分割(现在是,分割),排序后也是一行一个。请问可以实现吗