a b c k de f h g
let str = `a b c k de f h g`const space_count = (str) => { return str.indexOf(str.trim())}const submit = () => { let p = str.trim().split("\n") // 父路径的每一项的名称 let parentPathSplit = [] // 合并后的路径列表 let joinPath = [] // 缩进的次数,4个空格为一个缩进 let indentationCount = 0 let trimPath = "" for (let item of p) { trimPath = item.trim() if (trimPath == "") { continue } indentationCount = Math.ceil(space_count(item) / 4) // 如果缩进的次数为0,说明顶层路径,重置parentPathSplit if (indentationCount == 0) { parentPathSplit = [trimPath] joinPath.push(parentPathSplit.join("/")) continue } // 缩进的次数与parentPathSplit对应,0是顶层,1是第二层... // 次数与长度相同,添加 // 如果下一次还是相同的缩进,说明是并列关系,此时,长度 > 次数 if (indentationCount == parentPathSplit.length) { parentPathSplit[indentationCount] = trimPath joinPath.push(parentPathSplit.join("/")) continue } // 如果父级是1个缩进,当前为3个缩进,多了一个,以下代码修正这种问题 if (indentationCount > parentPathSplit.length) { indentationCount = parentPathSplit.length parentPathSplit[indentationCount] = trimPath } // 合并父目录及当前路径 joinPath.push(parentPathSplit.slice(0, indentationCount).join("/") + "/" + trimPath) } console.log(joinPath)}
输出:
[ "a", "a/b", "a/b/c", "a/b/k", "a/d", "e", "e/f", "e/f/h", "e/g"]
代码能走通,结果也正常,问题是优化,可能还有未顾及到的地方。
谢谢
str.split('\n') .reduce((arr, item) => { arr[0].splice(item.search(/\S/) / 4, Infinity, item.trim()) arr.push(arr[0].join('/')) return arr }, [[]]) .slice(1)
[ "a", "a/b", "a/b/c", "a/b/k", "a/d", "e", "e/f", "e/f/h", "e/g"]
let str = `a b c k de f h g`;const lines = str.split("\n") .map(line => ({ // 通过空格数计算层级 level: ~~((line.length - line.trimStart().length) / 4), value: line.trim() }));// e 和 f 之间的层级差出现了越级的情况,修正 level,方便后面的 path 算法lines.reduce((level, it) => { if (it.level - level > 1) { it.level = level + 1; } return it.level;}, 0);// 这部分算法不想解释了,自己跟吧// 主要目的就是用 path 保存处理过程,循环事更新对应层次,// 并截取(段)组合成路径字符串const path = [];const result = [];for (const it of lines) { const { level, value } = it; path[level] = value; result.push(path.slice(0, level + 1).join("/"));}console.log(JSON.stringify(result, null, 4));
结果
[ "a", "a/b", "a/b/c", "a/b/k", "a/d", "e", "e/f", "e/f/h", "e/g"]
优化上述JavaScript代码的关键在于简化逻辑,减少不必要的计算和中间变量,并确保代码易于理解和维护。以下是一些可能的优化措施:
trim
:trim
,并将结果存储在变量中,以避免在每次迭代时重复调用它。space_count
函数在每次迭代中都被调用,并且它内部又使用了indexOf
,这可能会导致不必要的性能开销。我们可以尝试直接计算缩进量,而不是通过查找第一个非空格字符的位置来间接计算。Array.prototype.map
或for...of
循环:for...of
循环是合适的,但如果需要更简洁的代码,可以考虑使用map
方法。基于以上建议,以下是一个优化后的代码示例:
function parseIndentedText(str) { const lines = str.trim().split('\n'); const pathStack = []; // 用于存储当前路径的栈 const result = []; // 存储最终结果的数组 const indentSize = 4; // 缩进大小,这里假设为4个空格 for (const line of lines) { const trimmedLine = line.trim(); if (trimmedLine === '') continue; // 跳过空行 const indentLevel = Math.floor(line.search(/\S|$/) / indentSize); // 直接计算缩进级别 // 如果当前行的缩进级别小于栈的大小,说明需要回退到上一个路径级别 while (pathStack.length > indentLevel) { pathStack.pop(); } // 添加当前项到路径栈中 pathStack.push(trimmedLine); // 将栈中的路径元素合并成字符串并添加到结果数组中 result.push(pathStack.join('/')); } return result;}// 测试代码const str = `a b c k de f h g`;const output = parseIndentedText(str);console.log(output);
这个优化后的代码使用了栈来跟踪当前的路径级别,并直接计算每行的缩进级别,从而避免了在循环中多次调用trim
和indexOf
。此外,代码的结构也更加清晰和简洁。
因为 a.pinyin[0] 的原因,我不知道怎么用 a[..] 的方式简化代码 谢谢
我认为代码(如下)已经优化(只需使用比相同逻辑的初始版本更少的变量) > 在优化过程中,我应该考虑哪些因素? 这是代码(也在jsfiddle上) 这是代码的解释。“处理”函数在数组中查找相同的值,对于每个相同的值,它通过将一个数字挂起到该值来更改值,“数字”表示它在数组中找到的值的计数。 例如arr=["x","x","y","z"]将返回["x(1)","x(2)","y","z"]"y"和"z
问题内容: 在Java项目中,我正在使用第三方库,该第三方库通过 我希望能够从我的应用程序中影响此方法的搜索路径,以便用户无需在命令行上指定正确的java.library.path值(此值取决于当前操作系统)和建筑)。例如在Windows上,我想将其设置为“ lib / native / windows”,在Linux 32bit上,将其设置为“ lib / native / linux32”等。
该怎么修改代码 验证通过
本文向大家介绍JS取得绝对路径的实现代码,包括了JS取得绝对路径的实现代码的使用技巧和注意事项,需要的朋友参考一下 在项目中,我们经常要得到项目的绝对路径,方便我们上传下载文件,JS为我们提供了方法,虽说要迂回一下。代码如下:
我想通过打开一个文件来获得一个文件路径,该文件选择由start ActivityForResult,其意图是意图。ACTION_GET_CONTENT和setType(* / *), 但是当我选择打开“Nexus 5X”项时,返回uri是“com.android.externalstorage.documents”,如何处理这种类型uri。有一些代码。 截图