Auto commit

This commit is contained in:
smallkun 2025-03-17 18:50:51 +08:00
parent f10b80e114
commit cfdebb17f7
2 changed files with 30 additions and 0 deletions

View File

@ -66,6 +66,8 @@ int main(){
最终结果: “12ABC34567890”
### 4. 字符串查找
字符串查找: “123456123abc123hbc”

View File

@ -0,0 +1,28 @@
#include <stdio.h>
#include <string.h>
int main(){
char str[100];
char subStr[100];
int i, j, index;
gets(str);
gets(subStr);
scanf("%d", &index);
i=strlen(subStr) + strlen(str);//主串+子串=两个合并后的结束符位置
str[i] = '\0';
i--;//13->i-3 -> i
for(j=strlen(str)-1;j>=index;j--){
str[i--] = str[j];
}
// for(i=0;i<strlen(subStr);i++){
// str[index+i] =subStr[i];
// }
puts(str);
return 0;
}