Compare commits

...

3 Commits

Author SHA1 Message Date
ee576351d9 Auto commit 2025-02-27 19:27:28 +08:00
25cbe06f6c Auto commit 2025-02-27 19:27:03 +08:00
22b99cb301 Auto commit 2025-02-27 19:24:55 +08:00
2 changed files with 80 additions and 3 deletions

View File

@ -1,4 +1,4 @@
git pull git pull
git add -A git add -A
git commit -m "Auto commit" git commit -m "Auto commit"
git push origin main git push

View File

@ -0,0 +1,77 @@
/*----------------------------------------------------------------------
------------------------------------------------------------------------
(2A)2A即AA(4AB)4AB.
1
(5A)
:AAAAA
2
(3AC)
:ACACAC
3
(3C)(4AB)
:CCCABABABAB
------------------------------------------------------------------------
main或其它函数中给出的内容
Program-End之间填入若干语句
----------------------------------------------------------------------*/
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int parseNumber(const char *str, int *index) {
int num = 0;
while (str[*index] >= '0' && str[*index] <= '9') {
num = num * 10 + (str[*index] - '0');
(*index)++;
}
return num;
}
void decodeString(char *s, char *out) {
char *p_read = s;
char *p_write = out;
char buf[64] = {0};
int digit_len = 0;
int repeats = 0;
while (*p_read){
/**********Program**********/
if(*p_read == '('){//找到左括号 //(3AC)
digit_len = 0;//字符需要打印个个数
digit_len = parseNumber(++p_read, &digit_len);//取出数字部分
while(*p_read >= '0' && *p_read <= '9'){/
p_read++;
}
repeats = 0;
while(*p_read != ')'){
buf[repeats++]=*p_read++;
}
buf[repeats]='\0';
for(repeats=0;repeats<digit_len;repeats++){
out = strcat(out, buf);
}
}
p_read++;
/********** End **********/
}
}
int main() {
char s[32] = {0};
char result[512] = {0};
printf("输入字符串s");
scanf("%s", s);
decodeString(s, result);
printf("解码后字符串:%s", result);
return 0;
}