分享
 
 
 

字符串编程,将字符串S中出现的子串T1用字符串T2替代。

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

/*字符串编程,将字符串S中出现的子串T1用字符串T2替代

ahebhechedhe

he

hello!

ahello!bhello!chello!dhello!

*/

/*静态数组实现*/

#include <stdio.h>

#include <stdlib.h>

#include <iostream.h>

#define MAXSTRLEN 255

typedef unsigned char SString[MAXSTRLEN + 1];

typedef int Status;

void StrAssign(SString &S,char *chars)

{//串赋值

int length = 0;

unsigned char * Sclient = S + 1;

while(*(chars))

{

*Sclient = *chars;

chars++;

Sclient++;

length++;

}

*Sclient = '\0';

S[0] = length;

}

void Display_String(SString S)

{//串显示

cout<<S + 1<<endl;

}

int Index(SString S, SString T, int Pos)

{//在串S中扫描子串T的位置值,如不存在子串T返回0

unsigned char *Sclient = S + 1;

int clientLen = 0;

if (Pos > S[0])

return -1;

T++;

while (*(Sclient))

{

while(*(T) == *(Sclient + Pos))

{

T++;

if (!*T)

return Pos;

clientLen++;

Sclient++;

}

Sclient = Sclient - clientLen;

Pos++;

}

return -1;

}

void Delete(SString &S, int pos, int len)

{//在串S中删去从pos位置开始的len个字符

S[0] -= len;

unsigned char * Sclient = S + 1;

while (*(Sclient + len + pos))

{

*(Sclient + pos) = *(Sclient + pos +len);

Sclient++;

}

*(Sclient + pos) = '\0';

}

void Insert(SString &S,int &pos,SString T)

{//在串S的pos位置插入子串T

int i;

if(pos != S[0])

{

for (i = 0; i < S[0] - pos; i++)

{

*(S + S[0] + T[0] - i) = *(S + S[0] - i);

}

}

for(i = 0; i < T[0]; i++)

{

S[pos + i + 1] = T[i + 1];

}

S[0] += T[0];

*(S + S[0] + 1) = '\0';

pos += T[0];

}

void Replace_SubString(SString &S, SString T1, SString T2)

{//通过对Index、Delete和Insert函数的调用,完成将串S中出现的子串T1用串T2替代

int pos = 0;

int posFlag = -1;

while (1)

{

pos = Index(S, T1, pos);

if (pos < posFlag)

break;

posFlag = pos;

Delete(S, pos, T1[0]);

Insert(S, pos, T2);

}

}

void main( void )

{

SString S, T1,T2;

StrAssign(S, "ahebhechedhe");

Display_String(S);

StrAssign(T1,"he");

Display_String(T1);

StrAssign(T2,"HELLO!");

Display_String(T2);

Replace_SubString(S,T1,T2);

Display_String(S);

}

/*用动态链表实现:*/

#include <stdio.h>

#include <stdlib.h>

#define MAXSTRLEN 255

typedef struct

{

char *ch;

int length;

} HString;

void StrAssign(HString &S, char *chars)

{

//串赋值

char* c;

int i, j;

if (!S.ch)

free(S.ch);

for (i = 0, c = chars; *c; c++, i++ );

if (!i)

{

S.ch = NULL;

S.length = 0;

}

else

{

if (!(S.ch = (char*)(malloc(sizeof(char) * i))))

return;

for (j = 0; j < i; j++)

S.ch[j] = chars[j];

}

S.length = i;

}

void Display_String(HString S)

{//串显示

if (S.ch == NULL)

return;

int i;

for(i = 0; i < S.length; i++)

printf("%c", S.ch[i]);

printf("\n");

}

int Index(HString S, HString T,int Pos)

{//在串S中扫描子串T的位置值,如不存在子串T返回0

int clientLen = 0;

char * Tclient = T.ch;

if (Pos >= S.length)

return -1;

char * Sclient = S.ch;

while ((Sclient - S.ch) <= S.length)

{

while(*(Tclient) == *(Sclient + Pos))

{

if ((Tclient - T.ch) < S.length)

return Pos;

Tclient++;

clientLen++;

Sclient++;

}

Sclient = Sclient - clientLen;

Pos++;

}

return -1;

}

void Delete(HString &S,int pos,int len)

{//在串S中删去从pos位置开始的len个字符

int i;

for (i = 0; i < (S.length - pos); i++)

S.ch[pos + i] = S.ch[pos + i + len];

S.length -= len;

}

void Insert(HString &S,int &pos,HString T)

{//在串S的pos位置插入子串T

S.ch = (char *)realloc(S.ch, T.length + S.length);

S.length += T.length;

int i;

if(pos != S.length)

{

for (i = 0; i < S.length - pos; i++)

{

*(S.ch + S.length + T.length-1 - i) = *(S.ch + S.length -1- i);

}

}

for(i = 0; i < T.length; i++)

{

S.ch[pos + i] = T.ch[i];

}

pos += T.length;

}

void Replace_SubString(HString &S, HString T1,HString T2)

{// 通过对Index、Delete和Insert函数的调用,完成将串S中出现的子串T1用串T2替代

int pos = 0;

int posFlag = -1;

while (1)

{

pos = Index(S, T1, pos);

if (pos < posFlag)

break;

posFlag = pos;

Delete(S, pos, T1.length);

Insert(S, pos, T2);

}

}

void main()

{

HString S, T1, T2;

StrAssign(S, "ahebhechedhe");

Display_String(S);

StrAssign(T1, "he");

Display_String(T1);

StrAssign(T2, "hello!");

Display_String(T2);

Replace_SubString(S,T1,T2);

Display_String(S);

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有