Merge branch 'main' of git.smallkun.cn:smallkun/class-notes
This commit is contained in:
commit
6c863dd1ce
@ -524,24 +524,113 @@ int main(){
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 函数
|
## 函数
|
||||||
|
|
||||||
|
### 函数-1
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 函数-2
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 函数-3
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 指针
|
## 指针
|
||||||
|
|
||||||
|
### 指针-1
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 指针-2
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 指针-3
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 指针-4
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 编译预处理
|
## 编译预处理
|
||||||
|
|
||||||
|
### 预处理-1
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 预处理-2
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 预处理-3
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 结构体
|
## 结构体
|
||||||
|
|
||||||
|
### 结构体-1
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 结构体-2
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### 结构体-3
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 文件
|
## 文件
|
||||||
|
|
||||||
##
|
### 文件-1
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 文件-2
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 文件-3
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,19 +42,20 @@ void decodeString(char *s, char *out) {
|
|||||||
while (*p_read){
|
while (*p_read){
|
||||||
/**********Program**********/
|
/**********Program**********/
|
||||||
if(*p_read == '('){//找到左括号 //(3AC)
|
if(*p_read == '('){//找到左括号 //(3AC)
|
||||||
digit_len = 0;//字符需要打印个个数
|
digit_len = 0;//数字的长度
|
||||||
digit_len = parseNumber(++p_read, &digit_len);//取出数字部分
|
repeats = 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++){
|
p_read+=digit_len;
|
||||||
|
//定位到字符
|
||||||
|
|
||||||
|
digit_len = 0;
|
||||||
|
while(*p_read != ')'){
|
||||||
|
buf[digit_len++]=*p_read++;
|
||||||
|
}//将需要输出字符存储到buf中
|
||||||
|
buf[digit_len]='\0';
|
||||||
|
|
||||||
|
//按存储的个数打印
|
||||||
|
while(repeats--){
|
||||||
out = strcat(out, buf);
|
out = strcat(out, buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -72,6 +73,3 @@ int main() {
|
|||||||
printf("解码后字符串:%s", result);
|
printf("解码后字符串:%s", result);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user