1 Star 0 Fork 0

houwanjie/day01作业

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
题目1.html 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
houwanjie 提交于 2022-10-10 21:07 . 三阶段day01作业
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
<script>
// 题目1: 对字符串进行排列组合, 得到所有字符的全排列组合(假设所有字符不重复)
// 函数名:permutation
// 参数:需要排列组合的字符串
// 返回值:字符串的所有排列组合数组
// 例如:permutation("abc") 返回["abc", "acb", "bac", "bca", "cab", "cba"]
function permutation(str){
if(str.length==1){
return [str];
}
let res=[];
let arr =arguments.callee(str.slice(1));
for(let i=0;i<arr.length;i++){
let arr1=[];
for (let j=0;j<arr[i].length+1;j++){
let newstr =arr[i].slice(0,j)+str[0]+arr[i].slice(j);
arr1.push(newstr);
}
res=res.concat(arr1);
}
return res;
}
console.log(permutation("abc"));
</script>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/houwanjie/day01-job.git
[email protected]:houwanjie/day01-job.git
houwanjie
day01-job
day01作业
master

搜索帮助