输出错误的代码cout<< substr(temp,1,strlen(word)+1)<<'\n';
输出应该是rockstar用于数组s中的最后一个句子但是输出rockstar r。
句子“没人能敢”输出也是错误的。没有人猫。如何 cat 而不是可以。请说明导致此类问题的原因。
#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]!='\0')
{
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;
}
答案 0 :(得分:2)
C样式字符串必须始终为零终止('\0'
)。否则它不是一个合适的字符串,并没有太多的工作。 substr
函数似乎没有添加此终结符。
除此之外,使用静态缓冲区作为返回值是严重危险,因为每次调用substr
都会破坏之前的返回值。在同一语句或多线程应用程序中使用两个调用将无法正常工作。
所有这一切都可以通过使用std::string
来解决,substr
甚至还有一个有效的systems.uom.ucum.UCUM.HORSEPOWER.getSymbol()
成员函数。