icoding测试代码--串替换

icoding的数据结构并没有一个测试代码,其都是直接编写一个函数的形式,因此很难知道自己的实际输出是什么。针对部分题目,我编写了一系列测试代码以供大家进行数据输出的测试。

请先将你的代码复制到int str_replace(const char *in, char *out, int outlen, const char *oldstr, const char *newstr)函数中然后修改main函数完成测试样例的输入

在代码开头有个修改提示,请按照提示操作修改即可。

#include<stdio.h>
#include<stdlib.h>
//#include "dsstring.h"

/*
修改提示
请先将你的代码复制到
int str_replace(const char *in, char *out, int outlen, const char *oldstr, const char *newstr)
函数中然后修改main函数完成测试样例的输入
*****************
请修改main函数的内容实现不同测试样例的输出
in是输入的字符串例如abcc
oldstr是等待替换的字符串
newstr是新替换的字符串
outlen是输出的最大长度
*/


int str_replace(const char *in, char *out, int outlen, const char *oldstr, const char *newstr){

//TODO


}


int main(){
    char in[]="abcc";//可修改
    char out[100];
    char oldstr[]="a";//可修改
    char newstr[]="22";//可修改
    int rep=0;
    int oulen=20;//可修改


//以下请勿修改//
    printf(">>icoding 串匹配\n \n");
    printf("===开始测试===\n");
    printf("————原始串————\n    %s\n",in);
    printf("\n>>目标将字符串 %s 替换为 %s \n>>out的长度为 %d\n>>正在替换\n",oldstr,newstr,oulen);
    rep=str_replace(in,out,oulen,oldstr,newstr);
    printf("<<替换成功!替换次数==%d\n————替换串————\n    %s\n\n",rep,out);
    printf("\n如遇替换串输出为空,请检查:\n①是否在return前完成对out的赋值操作\n②是否在字符串最末尾处加上'\\0'\n");

}





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

谨慎谦虚

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值