POJ 字符串插入

总时间限制: 1000ms 内存限制: 65536kB

描述有两个字符串str和substr,str的字符个数不超过10,substr的字符个数为3。(字符个数不包括字符串结尾处的'\0'。)将substr插入到str中ASCII码最大的那个字符后面,若有多个最大则只考虑第一个。

输入

输入包括若干行,每一行为一组测试数据,格式为

str substr

输出

对于每一组测试数据,输出插入之后的字符串。

样例

输入

abcab eee

12343 555

样例

输出

abceeeab

12345553


#include <cstdio>
#include <cstring>

const int MAX_STRING_LEN = 15;

bool readLine(char *str, char *substr)
{
	bool bEof = false;

	if (2 == fscanf(stdin, "%s %s", str, substr))
	{
		bEof = true;
	}

	return bEof;
}

void insert(char *str, char *substr)
{
	int i, maxIdx;
	size_t size = strlen(str);

	// find the index of the maximum ascii code
	maxIdx = 0;
	for (i=1; i<size; ++i)
	{
		if (str[maxIdx] < str[i])
		{
			maxIdx = i;
		}
	}

	// shift right to make space 
	for (i=size; i>maxIdx; --i)
	{
		str[i+3] = str[i];
	}

	// insert the substr
	++i;
	str[i++] = substr[0];
	str[i++] = substr[1];
	str[i]   = substr[2];
}

void print(char *str)
{
	printf("%s\n", str);
}

int main(void)
{
	char str[MAX_STRING_LEN]    = {'\0'};
	char substr[MAX_STRING_LEN] = {'\0'};

	while (readLine(str, substr))
	{
		insert(str, substr);
		print(str);
	}

	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值