博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
面试题---删除串中的指定子串
阅读量:5231 次
发布时间:2019-06-14

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

#include 
#include
#include
#include
#include
using namespace std;void del(char *str,char *sub){ char *head = NULL; char *p = NULL; head = p = str; int sublen = strlen(sub); while(*p != '\0') { if(strncmp(p,sub,sublen) != 0) { *str = *p; str++; } else { p--; p += sublen; } p++; } *str = '\0';}int main(){ cout<<"输入一个字符串:"<
>value; cout<<"输入要删除的字符串"<
>sub; del(value,sub); cout<<"删除后的结果为:"<
<

 

转载于:https://www.cnblogs.com/qingergege/p/7747579.html

你可能感兴趣的文章
P1373 小a和uim之大逃离 四维dp,维护差值
查看>>
NOIP2015 运输计划 树上差分+树剖
查看>>
P3950 部落冲突 树链剖分
查看>>
读书_2019年
查看>>
读书汇总贴
查看>>
微信小程序 movable-view组件应用:可拖动悬浮框_返回首页
查看>>
MPT树详解
查看>>
空间分析开源库GEOS
查看>>
RQNOJ八月赛
查看>>
前端各种mate积累
查看>>
jQuery 1.7 发布了
查看>>
Python(软件目录结构规范)
查看>>
Windows多线程入门のCreateThread与_beginthreadex本质区别(转)
查看>>
Nginx配置文件(nginx.conf)配置详解1
查看>>
linux php编译安装
查看>>
name phone email正则表达式
查看>>
721. Accounts Merge
查看>>
OpenCv-Python 图像处理基本操作
查看>>
「Unity」委托 将方法作为参数传递
查看>>
重置GNOME-TERMINAL
查看>>