📅  最后修改于: 2023-12-03 15:11:17.347000             🧑  作者: Mango
这是一个用Javascript编写的程序,用于检查两个字符串是否是相互旋转的。如果是相互旋转的,则返回true;否则返回false。
我们可以将字符串旋转并连接起来,然后判断其中一个字符串是否是另一个字符串的子串。如果是,则返回true。
具体实现步骤如下:
以下是该程序的代码片段,使用Javascript编写:
function isRotation(str1, str2) {
if (str1.length !== str2.length) {
return false;
}
const newStr = str1 + str1;
let rotations = str1.length;
while (rotations > 0) {
if (newStr.indexOf(str2) !== -1) {
return true;
}
newStr = newStr.slice(1) + newStr[0];
rotations--;
}
return false;
}
你可以在你的Javascript程序中使用该函数来判断两个字符串是否是相互旋转的。以下是示例代码:
const str1 = 'abcde';
const str2 = 'deabc';
if (isRotation(str1, str2)) {
console.log(`${str1} 和 ${str2} 是相互旋转的`);
} else {
console.log(`${str1} 和 ${str2} 不是相互旋转的`);
}
该程序将输出:abcde 和 deabc 是相互旋转的
。
以上是该程序的介绍,你可以在你的工作中使用该函数来优化你的代码。