- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一系列步骤,例如我将使用字母:
let steps=['f', 'b', 'c', 'd', 'x', 'h', 'i' ]
还有一个合并函数,它需要两个步骤,如果可以合并它们,则返回一个合并步骤,如果不能,则返回 null,例如,它将连接两个连续的字母:
function nextLetter(s){
return s.replace(/([a-zA-Z])[^a-zA-Z]*$/, function(a) {
var c= a.charCodeAt(0);
if (c===90 || c===122) return null; else return String.fromCharCode(++c);
}
});
}
// merge('x', 'a') -> null , marge('x', 'y') -> 'xy'
function mergeSteps(s1, s2) {
if (s2==nextLetter(s1)) return s1+s2; else return null;
}
我现在需要写一个mergeStepsArray
函数,这将接收一个步骤数组,并通过尝试合并尽可能多的后续步骤来返回一个新数组,以便考虑上面的步骤数组:
mergeStepsArray(steps, mergeSteps);
将返回['f', 'bcd', 'x', 'hi' ]
如何高效地编写这样的函数?我尝试使用 Array.reduce 但在这种情况下无法让它工作。
注意:我需要 mergeStepsArray(steps, mergeSteps)
这是一般并且不知道其论点的细节。例如,步骤可以由数字组成,mergeSteps 可以 return s2==s1*2 ? s1*s2 : null
谢谢
最佳答案
即使步骤是字符串,这也能工作:
let steps=['f', 'b', 'c', 'd', 'xgoog', 'h', 'i', 'd' ];
// check if the first character of b is just next the last character of a
function valid(a, b) {
return a.charCodeAt(a.length - 1) + 1 === b.charCodeAt(0);
}
let result = [];
// the first entry of steps as the current a
let current = steps[0];
for(var i = 1; i < steps.length; i++) {
// if this step is valid add it to current to accumulate the result
if(valid(current, steps[i]))
current += steps[i];
// if not then push the accumulated result into the array, and start another one from this step
else {
result.push(current);
current = steps[i];
}
}
// push the last one
result.push(current);
console.log(result);
一般情况:
逻辑应该是这样的:
// reduceArray should take three parameters:
// * arr: the array,
// * check: the function responsible for the decision wether to merge or not (takes two parameters and check if they're mergeable)
// * merge: the function that merges two elements (takes two parameters, merges them and return the result)
function reduceArray(arr, checkFn, mergeFn) {
// check for errors
if(!arr || !(arr instanceof Array) || arr.length == 0) return [];
if(!checkFn || typeof checkFn != "function") return [];
if(!mergeFn || typeof mergeFn != "function") return [];
var result = [];
// current should take the value of the first item in the array so ...
var current = arr[0];
// the loop starts at 1
for(var i = 1; i < arr.length; i++) {
// always check if current is mergeable with arr[i]
if(checkFn(current, arr[i])){
// if so, store the merge result in current and re-check again for the next element
current = mergeFn(current, arr[i]);
}
else {
// if not store the result, and start another check-merge starting from this index (arr[i])
result.push(current);
current = arr[i];
}
}
// don't forget to store the last element (merged or not)
result.push(current)
return result;
}
function myCheck(a, b) {
/* check if a could be merged with b */
/* must return true or false */
}
function myMerge(a, b) {
/* merge a with b and return the result */
}
// and then call reduceArray like this:
var myArr = new Array();
// ...
var result = reduceArray(myArr, myCheck, myMerge);
// or like this
var result = reduceArray(myArr, function(a, b){
/* return true or false depending on whether a and b are mergeable or not */
}, function(a, b){
/* merge a and b and return the result */
})
另一种方法:
我还添加了对回调的检查(以查看它是否是有效的回调)。
// reduceArray should take three parameters:
// * arr: the array,
// * mergeStepsFn: takes two parameter and return the result if they're mergeable, null othrwise
function reduceArray(arr, mergeStepsFn) {
// check for errors
if(!arr || !(arr instanceof Array) || arr.length == 0) return [];
if(!mergeStepsFn || typeof mergeStepsFn != "function") return [];
var result = [];
var current = arr[0];
for(var i = 1; i < arr.length; i++) {
// get the result of merging current with the arr[i]
var mergeResult = mergeStepsFn(current, arr[i]);
// if merge was successful
if(mergeResult !== null){ // should compare against null since we have no idea about the data types
// if so, store the merge result in current
current = mergeResult;
}
else {
// if not store the accumulated result, and start another check-merge starting from this index (arr[i])
result.push(current);
current = arr[i];
}
}
// don't forget to store the last element (merged or not)
result.push(current)
return result;
}
function myMergeStepsFunction(a, b) {
/* if a is mergeable with b then return the merge result, if not return null */
}
// and then call reduceArray like this:
var myArr = new Array();
// ...
var result = reduceArray(myArr, myMergeStepsFunction);
// or like this
var result = reduceArray(myArr, function(a, b){
/* if a is mergeable with b then return the merge result, if not return null */
});
关于javascript - 将步骤数组减少为更小的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41927010/
我是在项目中使用 keras 的新手。我一直在我的模型中使用generator。 我真的很困惑我应该输入什么值 1) In fit_generator : steps_per_epoch & vali
假设我们有如下情况: A has to give $10 to B. B has to give $20 to C. C has to give $10 to D. 现在这种情况可以简化为: A lo
我正在尝试对特定列(在工作表“OA”中)进行相对引用,我需要在 110 的步骤中检索新工作表中的单元格内容 例如, =OA!$AB217 =OA!$AB327 =OA!$AB437 与其在每个单元格中
我的 PowerShell 控制台启动时间很慢(总是等待超过 5 秒),并且希望获得有关故障排除步骤的建议,以找出瓶颈可能在哪里? 我已经阅读了关于运行脚本的内容,-NoProfile防止模块等加载很
我在 NativeScript 应用程序中使用 slider 小部件,我想知道是否有步骤属性。在我的例子中,小部件代表金钱,我希望以 5 美元的增量滑动。 我查看了文档,但找不到任何对这种情况有帮助的
我在 NativeScript 应用程序中使用 slider 小部件,我想知道是否有步骤属性。在我的例子中,小部件代表金钱,我希望以 5 美元的增量滑动。 我查看了文档,但找不到任何对这种情况有帮助的
这是我的code : &n
为什么 (2) c.ERR(模棱两可)?第一个方法参数 - char ('a') 被扩展为 float => 匹配。 如果找到匹配项,是否无需继续执行第 2 步(装箱/拆箱)或第 3 步(尝试可变参数
我有一个函数,它处理一个包含 6100 个列表项的列表。当列表只有 300 个项目时,该代码可以正常工作。但是立即与 6100 崩溃。有没有一种方法可以遍历这 6100 个项目,一次说 30 个,然后
1.制作PHP安装程序的原理 其实PHP程序的安装原理无非就是将数据库结构和内容导入到相应的数据库中,从这个过程中重新配置连接数据库的参数和文件,为了保证不被别人恶意使用安装文件,当安装
我创建了一个类似于 primeNG page 的步骤组件我想把他放在一个 dynamic dialog 里面但在应用它之后,“第 1 步”和“第 2 步”不会呈现。 查看代码,我发现关键部分是我们打开
我在理解描述的 MixColumns 步骤时遇到问题 here . 我知道扩散,这一切都是有道理的,因为它指出每列都被视为多项式并乘以 GF(2^8) 的模。 但是..乘以GF(2 ^ 8)。尽管域仍
根据我对 TeamCity 工作原理的观察,我注意到在所有步骤执行完毕后评估构建失败条件。这很烦人,因为如果满足任何构建失败条件,我不能有一个不会执行的步骤。 我不是指常见的构建失败条件,例如“至少一
基于这篇试图在我的环境中测试管道代码的帖子。但它给出了以下错误消息。如何修复他的管道代码? ERROR: Unable to find project for artifact copy: test
我参与了一个项目,需要向我的一位同事提供生产数据的子集(日期范围),以进行故障排除。我想将经过清理的生产数据子集插入新的数据库表中我的同事可以访问。请提出实现此目标的最佳方法。 最佳答案 最简单的方法
我有这样的场景: 鉴于我去这个页面 当我输入 cucumber 时 然后我点击 然后我应该看到文字 我不应该看到这条线 如果我运行这个场景,它将执行所有 5 个步骤。但是我想跳过第4步(然后我应该看到
是否有任何功能可以避免 m 文件的绘图输出? 我的意思是我在文件的开头放置了一个函数(如 clc),然后所有绘图函数都被阻止。 最佳答案 您可以使用自己的(嵌套在您的函数内或同一目录中)重载内置绘图函
我是小 cucumber 语言的新手,这在我看来是非常基本的问题,但我找不到答案。 我知道可以在 Gherking 中编写多行步骤参数,如下所示: Given a blog post named "R
即使其中一个步骤失败,有没有办法继续执行 Cucumber Steps。在我当前的设置中,当一个步骤失败时, cucumber 会跳过剩余的步骤......我想知道是否有某种方法可以设置 cucumb
start-step-stop 码是一种数据压缩技术,用于压缩相对较小的数字。 该代码的工作原理如下:它具有三个参数,start、step 和 stop。 Start 确定用于计算前几个数字的位数。
我是一名优秀的程序员,十分优秀!