程序的 substr() 函数中的输出出错

output coming wrong in substr() function of program

本文关键字:输出 出错 函数 substr 程序      更新时间:2023-10-16

代码cout<< substr(temp,1,strlen(word)+1)<<'n';的输出出错 数组 s 中最后一句的输出应该是 rockstar,但输出 rockstar r。

此外,输出的"没人敢"这句话也是错误的。它来的不是一只怎么来而不是罐头。请说明导致此类问题的原因。

#include<iostream>
#include<string.h>
using namespace std;
int par(char s[][80],int,int,char []);
char* substr(char*,int,int);
int main()
{
char s[][80]={{"this is rockstar"},{"I am rockstar"},{"the best one"},{"no one can dare"},{"rockstar rocks always"}};
char word[80]={"rockstar"};
int n1=5;
int num1=0;
cout<<par(s,n1,num1,word);
return 0;
}
int par(char s[][80],int n1,int num1,char word[80])
{
int k=0;
int length_word=strlen(word);
int t=0;
char beg[80];
while(t!=strlen(word))
{
beg[t]=word[t];
t++;
}
beg[t]=' ' ;
char end[80];
char mid[80];
mid[0]=' ';
t=0;
int l=1;
while(t!=strlen(word))
{
mid[l]=word[t];
l++;
t++;
}
mid[l]=' ';
t=0;
l=1;
end[0]=' ';
while(t!=strlen(word))
{
end[l]=word[t];
t++;
l++;
}
char temp[80];
while(k<=n1-1)
{
int i=0;
while(s[k][i]!='')
{
temp[i]=s[k][i];
i++;
}
if(strcmp(substr(temp,1,strlen(word)),beg)==0)
{
num1+=1;
}
cout<<substr(temp,1,strlen(word)+1)<<'n';
cout<<beg<<" hello"<<'n';
int tr;
for(tr=2;tr<strlen(temp)-(strlen(word)+2);tr++)
{
if(strcmp(substr(temp,tr,strlen(word)+2),mid)==0)
{
num1+=1;
}
}
if(strcmp(substr(temp,strlen(temp)-strlen(word),strlen(word)+1),end)==0)
{
num1+=1;
}
k++;

}
return num1;
}
char* substr(char *s,int i, int j)
{
int pos=i-1;
static char res[80];
int k=0;
while(pos<=i+j-2)
{
res[k]=s[pos];
pos++;
k++;
}
return res;
}

C 样式字符串必须始终以零结尾 (''(。否则,它不是一个合适的字符串,并且没有太多工作。substr函数似乎没有添加此终止符。

除此之外,对返回值使用静态缓冲区是非常危险的,因为每次调用substr都会破坏以前的返回。在同一语句或多线程应用中使用两个调用将不起作用。

所有这些都可以通过使用std::string来解决,它甚至有一个工作substr成员函数。