梵蒂冈之花
typedef struct{char data[MaxSize];int len;}SqString;int Index(SqString S,SqString T,int pos){//查找子串int i,j;i=pos-1;j=0;while(i<S.len&&j<T.len)if(S.data[i]==T.data[j]){i++;j++;}else{i=i-j+1;j=0;}if(j>=T.len)return i-j+1;else return 0;}void Replace(SqString &S,SqString T,SqString R){int i,j,pos=1;SqString sub;while(pos<=S.len-T.len){i=Index(S,T,pos);if(i){sub.len=S.len-i-T.len+1;//截取S中替换T串后面的子串并存入subfor(j=0;j<sub.len;j++)sub.data[j]=S.data[i+T.len-1+j];//替换字符串for(j=0;j<R.len;j++)S.data[i+j-1]=R.data[j];//将sub子串链接到后面for(j=0;j<sub.len;j++)S.data[i+R.len+j-1]=sub.data[j];S.len=i+R.len+sub.len-1;pos=i+R.len;}}}