在本系列文章中,我们介绍了一些编写高可维护性代码的技巧。这些编程技巧和建议来自于《代码整洁之道》一书,以及多年来我对这些技巧的应用经验。
译者注:《代码整洁之道》作者是 Robert C. Martin,豆瓣评分 8.6,是一本值得程序员阅读的书。关注公众号,并在公众号中回复 “JavaScript整洁代码” 有机会抽取《代码整洁之道》一本,本文文末有相关抽奖介绍。
在本文中,将介绍如何对代码一步一步地实现重构,并且以我在编程基础课程中已经实现的代码为例,来展示如何在实践中应用这些技巧。如果你刚刚接触或学习软件开发,那么建议你使用熟悉的技术和工具来练习和理解本文中的代码示例(本文使用 JavaScript 作为编程语言)。如果你已经具备一定的编程基础,相对来说会比较容易理解接下来要介绍的重构案例。在这个案例中已经存在了一种最初的代码实现方案,它的挑战在于应用不同的重构技术来深入理解代码,并使代码更易于维护。
对于这个挑战,我准备了一个 GIT 仓库,你可以找到我们在本文中每一步重构的算法的所有版本。通过一系列 npm 脚本, 可以执行每一个重构步骤中的代码。具体的脚本命令如下所示:
npm run stepX # Where X is the step
相关代码的 GIT 仓库: 代码仓库链接。
恺撒密码 (Ceaser Cipher) 是一种最简单且最广为人知的加密技术。它是一种替换加密的技术,明文中的所有字母都在字母表上向左(或向右)按照一个固定数目进行偏移后被替换成密文。例如,当右的偏移量为 3 的时候,所有的字母 E 将被替换成 H,F 变成了 I,以此类推。可以进入维基百科查看更多关于恺撒密码的介绍。
恺撒密码是由明文和密文两个字母表构成的,密文字母表是将明文字母表向左或向右移动一个固定位置得到的。例如,这个恺撒密码,使用的偏移量为 6,相当于右移 6 位:
Plain: ABCDEFGHIJKLMNOPQRSTUVWXYZ
Cipher: GHIJKLMNOPQRSTUVWXYZABCDEF
加密时,找到明文中的每一个字母在明文字母表中的位置,并且记录下密文字母表中该位置所对应的字母。
Plaintext: THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG
Ciphertext: QEB NRFZH YOLTK CLU GRJMP LSBO QEB IXWV ALD
解密则是反向进行的,左移 6 个位置。
重构在软件开发行业中是一个众所周知的主题。对此,我们对该主题进行了介绍,但我建议你阅读下面的文章:https://www.cuelogic.com/blog/what-is-refactoring-and-why-is-it-important。从这篇文章中,我们提取了我们将要在这里分享的主要观点。
重构不是银弹,但它是一种有价值的武器,可以帮助你控制好代码和项目 (软件/应用)。
它是一个科学的过程,对现有的代码进行改造,使代码可读性更高、更好理解和更整洁。而且,使添加新功能、构建大型应用程序以及发现和修复 bug 变得非常便捷。
重构很重要的原因:
一旦我们知道了想要解决的问题,我们就会实现一个任何人都可以在很少的时间内完成的方案。
function cipher(text, shift) {
var cipher = '';
shift = shift % 26;
for (var i = 0; i < text.length; i++) {
if (text.charCodeAt(i) >= 65 && text.charCodeAt(i) <= 90) {
if (text.charCodeAt(i) + shift > 90) {
cipher = cipher.concat(
String.fromCharCode(text.charCodeAt(i) + shift - 26),
);
} else {
cipher = cipher.concat(String.fromCharCode(text.charCodeAt(i) + shift));
}
} else if (text.charCodeAt(i) >= 97 && text.charCodeAt(i) <= 122) {
if (text.charCodeAt(i) + shift > 122) {
cipher = cipher.concat(
String.fromCharCode(text.charCodeAt(i) + shift - 26),
);
} else {
cipher = cipher.concat(String.fromCharCode(text.charCodeAt(i) + shift));
}
} else {
// blank space
cipher = cipher.concat(String.fromCharCode(text.charCodeAt(i) + shift));
}
}
return cipher.toString();
}
function decipher(text, shift) {
var decipher = '';
shift = shift % 26;
for (var i = 0; i < text.length; i++) {
if (text.charCodeAt(i) >= 65 && text.charCodeAt(i) <= 90) {
if (text.charCodeAt(i) - shift < 65) {
decipher = decipher.concat(
String.fromCharCode(text.charCodeAt(i) - shift + 26),
);
} else {
decipher = decipher.concat(
String.fromCharCode(text.charCodeAt(i) - shift),
);
}
} else if (text.charCodeAt(i) >= 97 && text.charCodeAt(i) <= 122) {
if (text.charCodeAt(i) - shift < 97) {
decipher = decipher.concat(
String.fromCharCode(text.charCodeAt(i) - shift + 26),
);
} else {
decipher = decipher.concat(
String.fromCharCode(text.charCodeAt(i) - shift),
);
}
} else {
// blank space
decipher = decipher.concat(
String.fromCharCode(text.charCodeAt(i) - shift),
);
}
}
return decipher.toString();
}
我们要开发的代码有两个方法:
cipher
- 它将文本按一个方向移动。decipher
- 执行与 cipher
相反的操作,也就是破译文本。我建议,无论我们如何重构代码,都要使用自动化测试来帮助我们验证有没有 “破坏” 代码。在这个例子中,我没有实现一整套测试方案,而是使用标准的 console.assert
创建了两个检查。
因此,我们将通过以下断言来检查算法是否稳定。
console.assert(
cipher('Hello World', 1) === 'Ifmmp!Xpsme',
`${cipher('Hello World', 1)} === 'Ifmmp!Xpsme'`,
);
console.assert(
decipher(cipher('Hello World', 3), 3) === 'Hello World',
`${decipher(cipher('Hello World', 3), 3)} === 'Hello World'`,
);
现在让我们迎接挑战吧,开始重构吧!
第一步是通过定义语义化的变量来移除代码中出现的魔法数字。可以这样修改以下数字:
因此,我们定义了以下常量,这些常量使这些数字具有语义化。
const NUMBER_LETTERS = 26;
const LETTER = {
a: 65,
z: 90,
A: 97,
Z: 122,
};
通过第一步更改之后,代码就变成了这样。
const NUMBER_LETTERS = 26;
const LETTER = {
a: 65,
z: 90,
A: 97,
Z: 122,
};
function cipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
if (text.charCodeAt(i) >= LETTER.a && text.charCodeAt(i) <= LETTER.z) {
if (text.charCodeAt(i) + shift > LETTER.z) {
cipher = cipher.concat(
String.fromCharCode(text.charCodeAt(i) + shift - NUMBER_LETTERS),
);
} else {
cipher = cipher.concat(String.fromCharCode(text.charCodeAt(i) + shift));
}
} else if (
text.charCodeAt(i) >= LETTER.A &&
text.charCodeAt(i) <= LETTER.Z
) {
if (text.charCodeAt(i) + shift > LETTER.Z) {
cipher = cipher.concat(
String.fromCharCode(text.charCodeAt(i) + shift - NUMBER_LETTERS),
);
} else {
cipher = cipher.concat(String.fromCharCode(text.charCodeAt(i) + shift));
}
} else {
// blank space
cipher = cipher.concat(String.fromCharCode(text.charCodeAt(i) + shift));
}
}
return cipher.toString();
}
function decipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
if (text.charCodeAt(i) >= LETTER.a && text.charCodeAt(i) <= LETTER.z) {
if (text.charCodeAt(i) - shift < LETTER.a) {
cipher = cipher.concat(
String.fromCharCode(text.charCodeAt(i) - shift + NUMBER_LETTERS),
);
} else {
cipher = cipher.concat(String.fromCharCode(text.charCodeAt(i) - shift));
}
} else if (
text.charCodeAt(i) >= LETTER.A &&
text.charCodeAt(i) <= LETTER.Z
) {
if (text.charCodeAt(i) - shift < LETTER.A) {
cipher = cipher.concat(
String.fromCharCode(text.charCodeAt(i) - shift + NUMBER_LETTERS),
);
} else {
cipher = cipher.concat(String.fromCharCode(text.charCodeAt(i) - shift));
}
} else {
cipher = cipher.concat(String.fromCharCode(text.charCodeAt(i) - shift));
}
}
return cipher.toString();
}
console.assert(
cipher('Hello World', 1) === 'Ifmmp!Xpsme',
`${cipher('Hello World', 1)} === 'Ifmmp!Xpsme'`,
);
console.assert(
decipher(cipher('Hello World', 3), 3) === 'Hello World',
`${decipher(cipher('Hello World', 3), 3)} === 'Hello World'`,
);
下一步是将代码中重复的代码提取到函数中。具体来说,if
控制结构体中的赋值代码在整个代码中是重复的,我们可以提取这些赋值代码。
也就是说,这个代码片段 cipher=cipher.concat(String.fromCharCode)
可以从代码中不同 if
中提取出来。这一行是在 if
结构之后执行的,而 if
结构只包含每个情况下的不同逻辑。
当然,我们对 cipher
函数执行的操作也适用于 decipher
函数。
应用此重构后的代码如下:
function cipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
let character = '';
if (text.charCodeAt(i) >= LETTER.a && text.charCodeAt(i) <= LETTER.z) {
if (text.charCodeAt(i) + shift > LETTER.z) {
character = text.charCodeAt(i) + shift - NUMBER_LETTERS;
} else {
character = text.charCodeAt(i) + shift;
}
} else if (
text.charCodeAt(i) >= LETTER.A &&
text.charCodeAt(i) <= LETTER.Z
) {
if (text.charCodeAt(i) + shift > LETTER.Z) {
character = text.charCodeAt(i) + shift - NUMBER_LETTERS;
} else {
character = text.charCodeAt(i) + shift;
}
} else {
// blank space
character = text.charCodeAt(i) + shift;
}
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
function decipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
let character = '';
if (text.charCodeAt(i) >= LETTER.a && text.charCodeAt(i) <= LETTER.z) {
if (text.charCodeAt(i) - shift < LETTER.a) {
character = text.charCodeAt(i) - shift + NUMBER_LETTERS;
} else {
character = text.charCodeAt(i) - shift;
}
} else if (
text.charCodeAt(i) >= LETTER.A &&
text.charCodeAt(i) <= LETTER.Z
) {
if (text.charCodeAt(i) - shift < LETTER.A) {
character = text.charCodeAt(i) - shift + NUMBER_LETTERS;
} else {
character = text.charCodeAt(i) - shift;
}
} else {
character = text.charCodeAt(i) + shift;
}
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
下一步是避免使用 else
控制结构。避免使用它是很容易的,我们只需要在循环开始之前将代码从 else
移到变量 character
,并作为它的默认值。
因此,重构后的代码如下:
function cipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
let character = text.charCodeAt(i) + shift;
if (text.charCodeAt(i) >= LETTER.a && text.charCodeAt(i) <= LETTER.z) {
if (text.charCodeAt(i) + shift > LETTER.z) {
character = text.charCodeAt(i) + shift - NUMBER_LETTERS;
} else {
character = text.charCodeAt(i) + shift;
}
} else if (
text.charCodeAt(i) >= LETTER.A &&
text.charCodeAt(i) <= LETTER.Z
) {
if (text.charCodeAt(i) + shift > LETTER.Z) {
character = text.charCodeAt(i) + shift - NUMBER_LETTERS;
} else {
character = text.charCodeAt(i) + shift;
}
}
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
function decipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
let character = text.charCodeAt(i) + shift;
if (text.charCodeAt(i) >= LETTER.a && text.charCodeAt(i) <= LETTER.z) {
if (text.charCodeAt(i) - shift < LETTER.a) {
character = text.charCodeAt(i) - shift + NUMBER_LETTERS;
} else {
character = text.charCodeAt(i) - shift;
}
} else if (
text.charCodeAt(i) >= LETTER.A &&
text.charCodeAt(i) <= LETTER.Z
) {
if (text.charCodeAt(i) - shift < LETTER.A) {
character = text.charCodeAt(i) - shift + NUMBER_LETTERS;
} else {
character = text.charCodeAt(i) - shift;
}
}
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
下一步对我们来说是麻烦的,但我们必须合并与 if-elseif
对应的逻辑。所以,我们只需要有两个 if
结构。这个操作会使我们在之后的步骤中看到,我们确实有两条可选择的路径,而不是现在我们看到的这些。
合并后的 if
逻辑代码如下:
function cipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
let character = text.charCodeAt(i) + shift;
if (
(text.charCodeAt(i) >= LETTER.a &&
text.charCodeAt(i) <= LETTER.z &&
text.charCodeAt(i) + shift > LETTER.z) ||
(text.charCodeAt(i) >= LETTER.A &&
text.charCodeAt(i) <= LETTER.Z &&
text.charCodeAt(i) + shift > LETTER.Z)
) {
character = text.charCodeAt(i) + shift - NUMBER_LETTERS;
}
if (
(text.charCodeAt(i) >= LETTER.a &&
text.charCodeAt(i) <= LETTER.z &&
text.charCodeAt(i) + shift > LETTER.z &&
!(text.charCodeAt(i) >= LETTER.a && text.charCodeAt(i) <= LETTER.z)) ||
(text.charCodeAt(i) >= LETTER.A &&
text.charCodeAt(i) <= LETTER.Z &&
!(text.charCodeAt(i) + shift > LETTER.Z))
) {
character = text.charCodeAt(i) + shift;
}
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
function decipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
let character = text.charCodeAt(i) - shift;
if (
(text.charCodeAt(i) >= LETTER.a &&
text.charCodeAt(i) <= LETTER.z &&
text.charCodeAt(i) - shift < LETTER.a) ||
(text.charCodeAt(i) >= LETTER.A &&
text.charCodeAt(i) <= LETTER.Z &&
text.charCodeAt(i) - shift < LETTER.A)
) {
character = text.charCodeAt(i) - shift + NUMBER_LETTERS;
}
if (
(text.charCodeAt(i) >= LETTER.a &&
text.charCodeAt(i) <= LETTER.z &&
!(text.charCodeAt(i) - shift < LETTER.a)) ||
(text.charCodeAt(i) >= LETTER.A &&
text.charCodeAt(i) <= LETTER.Z &&
!(text.charCodeAt(i) - shift < LETTER.A))
) {
character = text.charCodeAt(i) - shift;
}
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
在这一步中,我们必须说明我们的算法不需要两个 if
结构。相反,cipher
和 decipher
函数都有 if-else
结构。对于函数cipher
,我们看到有两种值可能会赋给变量 character
,第一种可能的值是从相应的第一个 if
得到的。
character = text.charCodeAt(i) + shift - NUMBER_LETTERS;
第二个可能的值是在默认情况下和从另一个 if
结构中获得的:
character = text.charCodeAt(i) + shift;
因此,可以删除第二个 if
的逻辑,并将控制结构转换为与第一个 if
结构对应的 else
,在这个 if
的条件不满足的情况下,第二个可能的值将会赋值给变量 character
。不管第二个 if
是否满足,都会由默认值赋值。
重构后的代码如下:
function cipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
let character;
if (
(text.charCodeAt(i) >= LETTER.a &&
text.charCodeAt(i) <= LETTER.z &&
text.charCodeAt(i) + shift > LETTER.z) ||
(text.charCodeAt(i) >= LETTER.A &&
text.charCodeAt(i) <= LETTER.Z &&
text.charCodeAt(i) + shift > LETTER.Z)
) {
character = text.charCodeAt(i) + shift - NUMBER_LETTERS;
} else {
character = text.charCodeAt(i) + shift;
}
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
function decipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
if (
(text.charCodeAt(i) >= LETTER.a &&
text.charCodeAt(i) <= LETTER.z &&
text.charCodeAt(i) - shift < LETTER.a) ||
(text.charCodeAt(i) >= LETTER.A &&
text.charCodeAt(i) <= LETTER.Z &&
text.charCodeAt(i) - shift < LETTER.A)
) {
character = text.charCodeAt(i) - shift + NUMBER_LETTERS;
} else {
character = text.charCodeAt(i) - shift;
}
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
由于缺乏语义值,使得我们的算法条件相当复杂并且难以理解。所以,代码中的下一步是封装条件。
具体来说,我们专注于封装 cipher
和 decipher
条件:
cipher:
(text.charCodeAt(i) >= LETTER.a && text.charCodeAt(i) <= LETTER.z && text.charCodeAt(i) + shift > LETTER.z)
||
(text.charCodeAt(i) >= LETTER.A && text.charCodeAt(i) <= LETTER.Z && text.charCodeAt(i) + shift > LETTER.Z)
decipher:
(text.charCodeAt(i) >= LETTER.a && text.charCodeAt(i) <= LETTER.z && text.charCodeAt(i) - shift < LETTER.a)
||
(text.charCodeAt(i) >= LETTER.A && text.charCodeAt(i) <= LETTER.Z && text.charCodeAt(i) - shift < LETTER.A)
实际上,这个逻辑可以概括为以下四个函数:
function isOutLowerCharacterCipher(text, position, shift) {
return (
text.charCodeAt(position) >= LETTER.a &&
text.charCodeAt(position) <= LETTER.z &&
text.charCodeAt(position) + shift > LETTER.z
);
}
function isOutUpperCharacterCipher(text, position, shift) {
return (
text.charCodeAt(position) >= LETTER.A &&
text.charCodeAt(position) <= LETTER.Z &&
text.charCodeAt(position) + shift > LETTER.Z
);
}
function isOutLowerCharacterDecipher(text, position, shift) {
return (
text.charCodeAt(position) >= LETTER.a &&
text.charCodeAt(position) <= LETTER.z &&
text.charCodeAt(position) - shift < LETTER.a
);
}
function isOutUpperCharacterDecipher(text, position, shift) {
return (
text.charCodeAt(position) >= LETTER.A &&
text.charCodeAt(position) <= LETTER.Z &&
text.charCodeAt(position) - shift < LETTER.A
);
}
执行此封装后的代码如下:
function cipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
let character;
if (
isOutLowerCharacterCipher(text, i, shift) ||
isOutUpperCharacterCipher(text, i, shift)
) {
character = text.charCodeAt(i) + shift - NUMBER_LETTERS;
} else {
character = text.charCodeAt(i) + shift;
}
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
function decipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
if (
isOutLowerCharacterDecipher(text, i, shift) ||
isOutUpperCharacterDecipher(text, i, shift)
) {
character = text.charCodeAt(i) - shift + NUMBER_LETTERS;
} else {
character = text.charCodeAt(i) - shift;
}
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
控制结构if else
都对同一变量(character
)进行赋值。因此,你可以从 if
中提取条件的逻辑并存储在变量中,如下所示:
const isOutAlphabet =
isOutLowerCharacterCipher(text, i, shift) ||
isOutUpperCharacterCipher(text, i, shift);
变量character
是由具有两个可能的值交替修改的:
NUMBER_LETTERS
NO_ROTATION
);因此,我们可以定义变量rotation
,这样就可以提高代码的粒度,如下所示:
const rotation = isOutAlphabet ? NUMBER_LETTERS : NO_ROTATION;
结果代码如下:
const isOutAlphabet =
isOutLowerCharacterCipher(text, i, shift) ||
isOutUpperCharacterCipher(text, i, shift);
const rotation = isOutAlphabet ? NUMBER_LETTERS : NO_ROTATION;
const character = text.charCodeAt(i) + shift - rotation;
cipher = cipher.concat(String.fromCharCode(character));
此步骤后两个函数的代码如下:
function cipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
const isOutAlphabet =
isOutLowerCharacterCipher(text, i, shift) ||
isOutUpperCharacterCipher(text, i, shift);
const rotation = isOutAlphabet ? NUMBER_LETTERS : NO_ROTATION;
const character = text.charCodeAt(i) + shift - rotation;
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
function decipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let i = 0; i < text.length; i++) {
const isOutAlphabet =
isOutLowerCharacterDecipher(text, i, shift) ||
isOutUpperCharacterDecipher(text, i, shift);
const rotation = isOutAlphabet ? NUMBER_LETTERS : NO_ROTATION;
const character = text.charCodeAt(i) - shift + rotation;
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
完成算法重构的最后一步是将循环中的变量 i
重命名为一个更合适的名称,如 position
(这个更改可能看起来很“渺小”,但我们为变量指定语义值非常重要,包括循环中的经典 i
、 j
和 k
。
应用这些简单的步骤之后,我们算法的最终结果如下:
function cipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let position = 0; position < text.length; position++) {
const isOutAlphabet =
isOutLowerCharacterCipher(text, position, shift) ||
isOutUpperCharacterCipher(text, position, shift);
const rotation = isOutAlphabet ? NUMBER_LETTERS : NO_ROTATION;
const character = text.charCodeAt(position) + shift - rotation;
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
function decipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let position = 0; position < text.length; position++) {
const isOutAlphabet =
isOutLowerCharacterDecipher(text, position, shift) ||
isOutUpperCharacterDecipher(text, position, shift);
const rotation = isOutAlphabet ? NUMBER_LETTERS : NO_ROTATION;
const character = text.charCodeAt(position) - shift + rotation;
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
在这篇文章中,我们提出了一些建议,将最初的原始代码重构为可理解的代码。
在这篇文章中,通过一个案例逐步的演示了重构的过程。或许你觉得某些重构方式是不合适的,不可否认也存在其他重构方式。基于以上各种情况,你也可以将你的建设性想法分享给整个社区。
在下一篇相关的文章中,我将继续来改进代码,尝试从函数式编程的思想给出解决方案。
最后,我们本文主要讨论了以下几点:
if-else
中提取相似代码else
if-else
控制结构最后,我会把代码留给下,包括原始代码和最终代码,这样你就可以做最后的权衡了。
function cipher(text, shift) {
var cipher = '';
shift = shift % 26;
for (var i = 0; i < text.length; i++) {
if (text.charCodeAt(i) >= 65 && text.charCodeAt(i) <= 90) {
if (text.charCodeAt(i) + shift > 90) {
cipher = cipher.concat(
String.fromCharCode(text.charCodeAt(i) + shift - 26),
);
} else {
cipher = cipher.concat(String.fromCharCode(text.charCodeAt(i) + shift));
}
} else if (text.charCodeAt(i) >= 97 && text.charCodeAt(i) <= 122) {
if (text.charCodeAt(i) + shift > 122) {
cipher = cipher.concat(
String.fromCharCode(text.charCodeAt(i) + shift - 26),
);
} else {
cipher = cipher.concat(String.fromCharCode(text.charCodeAt(i) + shift));
}
} else {
// blank space
cipher = cipher.concat(String.fromCharCode(text.charCodeAt(i) + shift));
}
}
return cipher.toString();
}
function decipher(text, shift) {
var decipher = '';
shift = shift % 26;
for (var i = 0; i < text.length; i++) {
if (text.charCodeAt(i) >= 65 && text.charCodeAt(i) <= 90) {
if (text.charCodeAt(i) - shift < 65) {
decipher = decipher.concat(
String.fromCharCode(text.charCodeAt(i) - shift + 26),
);
} else {
decipher = decipher.concat(
String.fromCharCode(text.charCodeAt(i) - shift),
);
}
} else if (text.charCodeAt(i) >= 97 && text.charCodeAt(i) <= 122) {
if (text.charCodeAt(i) - shift < 97) {
decipher = decipher.concat(
String.fromCharCode(text.charCodeAt(i) - shift + 26),
);
} else {
decipher = decipher.concat(
String.fromCharCode(text.charCodeAt(i) - shift),
);
}
} else {
// blank space
decipher = decipher.concat(
String.fromCharCode(text.charCodeAt(i) - shift),
);
}
}
return decipher.toString();
}
console.assert(
cipher('Hello World', 1) === 'Ifmmp!Xpsme',
`${cipher('Hello World', 1)} === 'Ifmmp!Xpsme'`,
);
console.assert(
decipher(cipher('Hello World', 3), 3) === 'Hello World',
`${decipher(cipher('Hello World', 3), 3)} === 'Hello World'`,
);
下面是最终的代码:
const NUMBER_LETTERS = 26;
const NO_ROTATION = 0;
const LETTER = {
a: 65,
z: 90,
A: 97,
Z: 122,
};
function isOutLowerCharacterCipher(text, position, shift) {
return (
text.charCodeAt(position) >= LETTER.a &&
text.charCodeAt(position) <= LETTER.z &&
text.charCodeAt(position) + shift > LETTER.z
);
}
function isOutUpperCharacterCipher(text, position, shift) {
return (
text.charCodeAt(position) >= LETTER.A &&
text.charCodeAt(position) <= LETTER.Z &&
text.charCodeAt(position) + shift > LETTER.Z
);
}
function isOutLowerCharacterDecipher(text, position, shift) {
return (
text.charCodeAt(position) >= LETTER.a &&
text.charCodeAt(position) <= LETTER.z &&
text.charCodeAt(position) - shift < LETTER.a
);
}
function isOutUpperCharacterDecipher(text, position, shift) {
return (
text.charCodeAt(position) >= LETTER.A &&
text.charCodeAt(position) <= LETTER.Z &&
text.charCodeAt(position) - shift < LETTER.A
);
}
function cipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let position = 0; position < text.length; position++) {
const isOutAlphabet =
isOutLowerCharacterCipher(text, position, shift) ||
isOutUpperCharacterCipher(text, position, shift);
const rotation = isOutAlphabet ? NUMBER_LETTERS : NO_ROTATION;
const character = text.charCodeAt(position) + shift - rotation;
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
function decipher(text, shift) {
let cipher = '';
shift = shift % NUMBER_LETTERS;
for (let position = 0; position < text.length; position++) {
const isOutAlphabet =
isOutLowerCharacterDecipher(text, position, shift) ||
isOutUpperCharacterDecipher(text, position, shift);
const rotation = isOutAlphabet ? NUMBER_LETTERS : NO_ROTATION;
const character = text.charCodeAt(position) - shift + rotation;
cipher = cipher.concat(String.fromCharCode(character));
}
return cipher.toString();
}
console.assert(
cipher('Hello World', 1) === 'Ifmmp!Xpsme',
`${cipher('Hello World', 1)} === 'Ifmmp!Xpsme'`,
);
console.assert(
decipher(cipher('Hello World', 3), 3) === 'Hello World',
`${decipher(cipher('Hello World', 3), 3)} === 'Hello World'`,
);
本文由哈喽比特于3年以前收录,如有侵权请联系我们。
文章来源:https://mp.weixin.qq.com/s/u8auGMw0EV5vy5BjNQlsdw
京东创始人刘强东和其妻子章泽天最近成为了互联网舆论关注的焦点。有关他们“移民美国”和在美国购买豪宅的传言在互联网上广泛传播。然而,京东官方通过微博发言人发布的消息澄清了这些传言,称这些言论纯属虚假信息和蓄意捏造。
日前,据博主“@超能数码君老周”爆料,国内三大运营商中国移动、中国电信和中国联通预计将集体采购百万台规模的华为Mate60系列手机。
据报道,荷兰半导体设备公司ASML正看到美国对华遏制政策的负面影响。阿斯麦(ASML)CEO彼得·温宁克在一档电视节目中分享了他对中国大陆问题以及该公司面临的出口管制和保护主义的看法。彼得曾在多个场合表达了他对出口管制以及中荷经济关系的担忧。
今年早些时候,抖音悄然上线了一款名为“青桃”的 App,Slogan 为“看见你的热爱”,根据应用介绍可知,“青桃”是一个属于年轻人的兴趣知识视频平台,由抖音官方出品的中长视频关联版本,整体风格有些类似B站。
日前,威马汽车首席数据官梅松林转发了一份“世界各国地区拥车率排行榜”,同时,他发文表示:中国汽车普及率低于非洲国家尼日利亚,每百户家庭仅17户有车。意大利世界排名第一,每十户中九户有车。
近日,一项新的研究发现,维生素 C 和 E 等抗氧化剂会激活一种机制,刺激癌症肿瘤中新血管的生长,帮助它们生长和扩散。
据媒体援引消息人士报道,苹果公司正在测试使用3D打印技术来生产其智能手表的钢质底盘。消息传出后,3D系统一度大涨超10%,不过截至周三收盘,该股涨幅回落至2%以内。
9月2日,坐拥千万粉丝的网红主播“秀才”账号被封禁,在社交媒体平台上引发热议。平台相关负责人表示,“秀才”账号违反平台相关规定,已封禁。据知情人士透露,秀才近期被举报存在违法行为,这可能是他被封禁的部分原因。据悉,“秀才”年龄39岁,是安徽省亳州市蒙城县人,抖音网红,粉丝数量超1200万。他曾被称为“中老年...
9月3日消息,亚马逊的一些股东,包括持有该公司股票的一家养老基金,日前对亚马逊、其创始人贝索斯和其董事会提起诉讼,指控他们在为 Project Kuiper 卫星星座项目购买发射服务时“违反了信义义务”。
据消息,为推广自家应用,苹果现推出了一个名为“Apps by Apple”的网站,展示了苹果为旗下产品(如 iPhone、iPad、Apple Watch、Mac 和 Apple TV)开发的各种应用程序。
特斯拉本周在美国大幅下调Model S和X售价,引发了该公司一些最坚定支持者的不满。知名特斯拉多头、未来基金(Future Fund)管理合伙人加里·布莱克发帖称,降价是一种“短期麻醉剂”,会让潜在客户等待进一步降价。
据外媒9月2日报道,荷兰半导体设备制造商阿斯麦称,尽管荷兰政府颁布的半导体设备出口管制新规9月正式生效,但该公司已获得在2023年底以前向中国运送受限制芯片制造机器的许可。
近日,根据美国证券交易委员会的文件显示,苹果卫星服务提供商 Globalstar 近期向马斯克旗下的 SpaceX 支付 6400 万美元(约 4.65 亿元人民币)。用于在 2023-2025 年期间,发射卫星,进一步扩展苹果 iPhone 系列的 SOS 卫星服务。
据报道,马斯克旗下社交平台𝕏(推特)日前调整了隐私政策,允许 𝕏 使用用户发布的信息来训练其人工智能(AI)模型。新的隐私政策将于 9 月 29 日生效。新政策规定,𝕏可能会使用所收集到的平台信息和公开可用的信息,来帮助训练 𝕏 的机器学习或人工智能模型。
9月2日,荣耀CEO赵明在采访中谈及华为手机回归时表示,替老同事们高兴,觉得手机行业,由于华为的回归,让竞争充满了更多的可能性和更多的魅力,对行业来说也是件好事。
《自然》30日发表的一篇论文报道了一个名为Swift的人工智能(AI)系统,该系统驾驶无人机的能力可在真实世界中一对一冠军赛里战胜人类对手。
近日,非营利组织纽约真菌学会(NYMS)发出警告,表示亚马逊为代表的电商平台上,充斥着各种AI生成的蘑菇觅食科普书籍,其中存在诸多错误。
社交媒体平台𝕏(原推特)新隐私政策提到:“在您同意的情况下,我们可能出于安全、安保和身份识别目的收集和使用您的生物识别信息。”
2023年德国柏林消费电子展上,各大企业都带来了最新的理念和产品,而高端化、本土化的中国产品正在不断吸引欧洲等国际市场的目光。
罗永浩日前在直播中吐槽苹果即将推出的 iPhone 新品,具体内容为:“以我对我‘子公司’的了解,我认为 iPhone 15 跟 iPhone 14 不会有什么区别的,除了序(列)号变了,这个‘不要脸’的东西,这个‘臭厨子’。