gpt4 book ai didi

通过使用指针移动 +1 来加密和解密字符串

转载 作者:太空宇宙 更新时间:2023-11-04 04:21:34 26 4
gpt4 key购买 nike

您好,我在尝试使用指针加密和解密字符串时遇到了困难。我需要将字母表移动+1。示例:你好将是 Ifmmp。而且我还需要消除其他字符,例如 $%^^。所以当字符串是 'z' +1 会给我 'a'这是我的代码。

char *cipher(char *s) {
int i =0;
int shift = 1;

while(*(s+i)!= '\0') {
if (*(s+i)) {
*(s+i)+= (shift);
}
i++;
}
}

char *decipher(char *s) {
int i =0;
int shift = -1;

while(*(s+i)!= '\0') {
if (*(s+i) +shift) {
*(s+i)+= (shift);
}
i++;
}
}

我当前的输出是:加密:abcxyz -> bcdyz{解密:bcdyz{ -> abcxyz

谢谢

最佳答案

首先,将 while 更改为 For-Loop,如果你在 for 循环中增加 iterator 并且你的条件最好的可读代码是 For-Loop

其次,你需要添加条件-如果字母是'z'分配'a'else做同样的事情

第三,如果你想避免其他字母你需要添加条件:

if((*s+i)<'a' || (*s+i)>'z'){
do what you want
} else {
avoide
} /// it will work if you use character encoding that the alphebet is by order and continuous

我在 chipher 函数中添加了更改的代码,您将在下一个函数中添加相同的代码

char *cipher(char *s){
int shift = 1;
for(int i=0; *(s+i)!= '\0'; i++){
if (*(s+i)){
//i add that condtion for 'z' you need to add the same condition to the next function
if(*(s+i)=='z'){
*(s+i)='a';
}else{
*(s+i)+= (shift);
}
}
}
}

char *decipher(char *s){
int shift = -1;
for(int i=0 ;*(s+i)!= '\0'; i++){
if (*(s+i) +shift){
*(s+i)+= (shift);
}
}
}

关于通过使用指针移动 +1 来加密和解密字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46298748/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com