0

是的,我目前正在学习向量。我正在尝试读取一个文本文件,计算唯一单词的数量,然后输出一个文本文件(稍后会做)。可以使用一些帮助来了解正在发生的事情以及为什么/如何解决?

#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
#include<vector>
using namespace std;
string toLower(string str);
string eraseNonAlpha(string Ast);
string  wordWasher(string str);
int countUniqenum(vector<string>&v);
int main()
{   
    ifstream inputStream; //the input file stream
    string word; //a word read in from the file
    string words=wordWasher(word);
    inputStream.open("alpha.txt");
    if (inputStream.fail())
    {
        cout<<"Can't find or open file"<<endl;
        cout<<"UR a loser"<<endl;
        system("pause");
        return 0;
    }//end if

    while (!inputStream.eof())
    {
        inputStream>>words;

    }//end loop

    vector<string> v;
    v.push_back(words);
    int unique =countUniqenum(v);
    cout<<unique<<endl;
    inputStream.close();

system("pause");
return 0;

}

string toLower(string str)
{

       for(int i=0;i<str.length();i++)
       {
               if (str[i]>='A'&& str[i]<='Z')
                 str[i]=str[i]+32;
       }
     return str;
}
string eraseNonAlpha(string str)
{
    for(int i=0;i<str.length();i++)
    {
        if(!((str[i]>='A'&&str[i]<='Z')||(str[i]>='a'&&str[i]<='z'))) 
        {str.erase(i,1);
        i--;
    }   
    }
    return str;
}

string  wordWasher(string str)
{   str=eraseNonAlpha(str);
    str=toLower(str);
    return str;
}                               
int countUniqenum(vector<string>&v)
{ int count=0;
  for(int i=0;i<v.size();i++)
  {
          if(v[i]!=v[i+1])
          count++;
  }     
  return count;
}  
4

3 回答 3

2

你肯定在这里越界了:

for(int i=0;i<v.size();i++)
{
      if(v[i]!=v[i+1])
//               ^^^

很可能还有其他错误。

于 2013-06-11T20:56:11.933 回答
1

就是这条线if(v[i]!=v[i+1])。在您最后一次通过循环时,v[i]是向量的最后一个元素并且v[i+1]不在末尾。

一个简单的解决方法是将循环更改为for(int i = 0; i < v.size() - 1; i++). 我不确定该功能是否真的可以满足您的要求,但这至少可以消除崩溃。

于 2013-06-11T20:59:49.880 回答
0

Shouldn't you vector be sorted for this to work..you are just checking the adjacent words are same or not

if(v[i]!=v[i+1])
于 2013-06-11T21:06:37.760 回答