价格区间指定递增

根据指定的价格范围,递增单位也不同。在 0 到 10 之间,每次递增 1;在 10 到 100 之间,每次递增 5;在 100 到 1000 之间,每次递增 10;在 1000 以上,每次递增 20。最小值为 0,最大值等于指定值(如 500)。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 这个函数接受一个最大价格作为参数,并返回从0到最大价格之间的所有可能的价格值。该函数将使用一个
// 包含每个范围的对象数组,然后使用while循环来生成递增的价格列表。最终的结果将作为数组返回并输出到控制台。
// 版本一
function getPriceRangeValues(maxPrice) {
if (maxPrice == undefined) return []
const priceRanges = [
{ max: 10, increment: 1 },
{ max: 100, increment: 5 },
{ max: 1000, increment: 10 },
{ max: Infinity, increment: 20 }
];

const values = [];

let currentPrice = 0;
// 待优化
while (currentPrice <= maxPrice) {
let range = priceRanges.find(range => currentPrice < range.max);

values.push(currentPrice);

currentPrice += range.increment;
}
values[values.length - 1] < maxPrice && values.push(maxPrice)
return values;
}
console.log(getPriceRangeValues(120));
结果:[
0, 1, 2, 3, 4, 5, 6, 7, 8,
9, 10, 15, 20, 25, 30, 35, 40, 45,
50, 55, 60, 65, 70, 75, 80, 85, 90,
95, 100, 110, 120
]