0
int main()
{
    cout<<"Enter a word"<<endl;
    char word1[]={0}; //first char array initialization
    cin>>word1;
    cout<<"Enter another word"<<endl;
    char word2[]={0};  //second char array initialization
    cin>>word2;
    char word3[]={0};  
    char word4[]={0};
    int i=0;
while (word1[i]!='\0')  //this converts both words to lower case by usinction tolower 
{
    word3[i]=char(tolower(word1[i])); //word3 and word4 stores the new arrays
    word4[i]=char(tolower(word2[i]));
    i++;
}

int output;  //output stores the value of 0,1 or -1
output=compareString(word3,word4);
if (output==0)
{
    cout<<"The two words are the same."<<endl; //if arrays are same
}
if (output==1)  
{
    cout<<"the 1st character of 1st word has a larger value than of 2nd word."<<endl;
}
if (output==-1)
{
    cout<<"the 1st character of 2nd word has a larger value than of 1st word."<<endl;
}
return 0;

}

int compareString(char string1,char string2)
{
    int size1=0;  //initialize size of string1
    int j=0;   //string1 position initialize
    while (string1[j]!='\0')  //loop to determine size of string1
    {
        size1+=1;
        j+=1;
    }
    int a=0;    //initialize size of string2
    int size2=0;  //string2 position
    while (string2[a]!='\0')  //loop determines size of string2
    {
        size2+=1;
        a+=1;
    }
     int i=0;
     int k=0;
     for (i=0;i<size1;i++)   //loop to compare the two strings
     {
     if (string1[i]!=string2[i])
     {
        if (string1[i]>string2[i])  //comparing 1st character of string1 & string2
        {
            return 1;
        }    
        else   //if string2's first character is greater in value
        {
            return -1;
        }
      }
      else
      {
          k++;  //incrementing k when character of string1 matches string2 character
      }
      }
   if (k==size1)  //to cjheck if all characters of both strings are same
   {
       if (k==size2)
       {
           return 0;
       }
   }
 }

这是一个比较两个 char 数组的函数,如果字符相互对应,则返回 0,如果 string1 的第一个字符大于 string2 的第一个字符,则返回 1,如果 string1 的第一个字符小于第一个字符,则返回 -1 string2.问题是当我运行它时,即使两个单词不同,输出总是0并且出现“单词相同”的文本。我是否在主程序中正确初始化了两个数组?还是有其他问题?

4

2 回答 2

2

本声明

char word1[]={0};

声明一个大小为 1 的数组,这意味着当您进行输入时,它将覆盖堆栈。对于所有其他数组也是如此。

在 C++ 中处理字符串时,强烈建议使用std::string!

于 2012-10-08T07:02:28.100 回答
2
char word1[]={0};

这一行创建了一个数组word1,它只有一个元素,设置为 0。当使用这个数组来保存一个字符串时,除了空字符串之外,你不能保存任何东西。您在这里导致缓冲区溢出,因为您将一个非空字符串读入该数组,然后将写入未分配给该数组的其他内存部分。这真是太糟了。

考虑std::string改为使用来保存字符串。它将根据需要自动调整其分配大小。

于 2012-10-08T07:03:25.360 回答