使用std :: string :: compare的字符串/单词操作(C ++)

时间:2019-03-17 06:03:30

标签: c++ arrays string function loops

问题

我首先将字符串分成不同的单词,然后检查是否存在单词反义字词。我为每个单词制作了一个不同的字符串,然后将其反转并将它们与其他字符串进行比较。

代码

Print(log)

}

当我输入字符串时:

#include<bits/stdc++.h>
using namespace std;

int main()
{   
string str;
getline(cin,str);

cout<<"the string inputted is "<<str;

char ch=str[0];
int i=0;
int sp_count=0;
while(ch!='\0')
{
    ch=str[i];
    if(ch==' ')
    {
        sp_count++;
    }   
    i++;
}

string words[sp_count+1];
ch=str[0];
i=0;
int w=0,it=0;
while(ch!='\0')
{
    ch=str[i];
    if(ch==' ')
    {
        w++;
        i++;
        continue;
    }
    words[w]=words[w]+ch;
    i++;
}
for(int i=0;i<sp_count+1;i++)
{   
cout<<words[i]<<endl;
}       
for(int i=0;i<sp_count+1;i++)
{   string temp=words[i];
    reverse(temp.begin(),temp.end());
    for(int j=i+1;j<sp_count+1;j++)
    {   int x=10;
        x=temp.compare(words[j]);
        if(x==0)
        {
            cout<<"strings "<<temp << " and "<<words[j]<<" are equal"<<endl;
        }
        else
        {
            cout<<"strings "<<temp << " and "<<words[j]<<" are not equal"<<endl;
        }
    }
}
return 0;

输出为:

Hello is si

该代码未返回正确的输出。

1 个答案:

答案 0 :(得分:-1)

确实,Retired Ninja 是正确的,您在切出独立单词的方式上有问题,尤其是最后一个单词。它有一个尾随空格,所以当然“si”和“si”不相等。

在 while 块中尝试以下更改:

while ((ch = str[i]) != '\0') {
    // ch = str[i];
    if (ch == ' ') {
        w++;
        i++;
        continue;
    }
    words[w] = words[w] + ch;
    i++;
}

我得到以下输出:

strings olleh and is are not equal
strings olleh and si are not equal
strings si and si are equal

您增加了 i,而不是更新 ch,而是将旧的 ch 值与 0 进行比较。