博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ——字符串插入
阅读量:6720 次
发布时间:2019-06-25

本文共 1807 字,大约阅读时间需要 6 分钟。

 

2:字符串插入

总时间限制: 
1000ms 
内存限制: 
65536kB
描述
有两个字符串str和substr,str的字符个数不超过10,substr的字符个数为3。(字符个数不包括字符串结尾处的'\0'。)将substr插入到str中ASCII码最大的那个字符后面,若有多个最大则只考虑第一个。
输入
输入包括若干行,每一行为一组测试数据,格式为
str substr
输出
对于每一组测试数据,输出插入之后的字符串。
样例输入
abcab eee12343 555
样例输出
abceeeab12345553
1 # include
2 # include
3 4 int main(void) 5 { 6 char s1[11], s2[4]; 7 int i; 8 while(scanf("%s%s", s1, s2)!=EOF) 9 {10 int max=0;11 int len=strlen(s1);12 for(i=0; i
s1[max])15 {16 max=i;17 }18 }19 for(i=0; i<=max; i++)20 printf("%c", s1[i]);21 printf("%s", s2);22 for(i=max+1; i

 

 

1 #include 
2 #include
3 4 const int MAX_STRING_LEN = 15; 5 6 bool readLine(char *str, char *substr) 7 { 8 bool bEof = false; 9 10 if (2 == fscanf(stdin, "%s %s", str, substr))11 {12 bEof = true;13 }14 15 return bEof;16 }17 18 void insert(char *str, char *substr)19 {20 int i, maxIdx;21 size_t size = strlen(str);22 23 // find the index of the maximum ascii code24 maxIdx = 0;25 for (i=1; i
maxIdx; --i)35 {36 str[i+3] = str[i];37 }38 39 // insert the substr40 ++i;41 str[i++] = substr[0];42 str[i++] = substr[1];43 str[i] = substr[2];44 }45 46 void print(char *str)47 {48 printf("%s\n", str);49 }50 51 int main(void)52 {53 char str[MAX_STRING_LEN] = {
'\0'};54 char substr[MAX_STRING_LEN] = {
'\0'};55 56 while (readLine(str, substr))57 {58 insert(str, substr);59 print(str);60 }61 62 return 0;63 }

 

 

转载于:https://www.cnblogs.com/Hewie/p/3439845.html

你可能感兴趣的文章
nodejs在linux环境下安装更新方式
查看>>
大道至简-第二章 心得体会
查看>>
湖南多校对抗赛(2015.05.03)Problem B: War
查看>>
hdu 3986 Harry Potter and the Final Battle
查看>>
NYIST OJ 题目20 吝啬的王国
查看>>
在500jsp错误页面获取错误信息
查看>>
python常见示例->web简单示例
查看>>
centos7下安装部署mongodb集群(副本集模式)
查看>>
[BZOJ] 1334: [Baltic2008]Elect
查看>>
Jquery对象---Jquery API (2)
查看>>
PHP ReflectionClass
查看>>
swift历史
查看>>
mysql导入大量数据时报MySQL server has gone away错误的解决办法
查看>>
socket简单理解
查看>>
过滤HTML
查看>>
临时表 表变量 游标
查看>>
关于 iTunes Store 授权和取消授权
查看>>
React文档(十三)思考React
查看>>
公司部门和职位
查看>>
python内置函数中的map,filter,reduce函数例子
查看>>