8

我正在做一个任务,我应该读取一个文件并计算行数,同时计算其中的单词。我在 while 循环中尝试了 getline 和 strtok 的组合,但没有成功。

file:example.txt(要读取的文件)。

嗨,你好,真是一个惊喜。
欢迎来到这个地方。
愿您在这里过得愉快。
(3行,和一些单词)。

读取文件.cpp

#include <iostream>
#include <fstream>
#include<string>
using namespace std;
int main()
{
  ifstream in("example.txt");
  int count = 0;

  if(!in)
  {
    cout << "Cannot open input file.\n";
    return 1;
  }

  char str[255];
  string tok;
  char * t2;

  while(in)
  {
    in.getline(str, 255);
    in>>tok;
    char *dup = strdup(tok.c_str());
    do 
    {
        t2 = strtok(dup," ");
    }while(t2 != NULL);
    cout<<t2<<endl;
    free (dup);
    count++;
  }
  in.close();
  cout<<count;
  return 0;
}
4

6 回答 6

5

刚刚做对了!!刚刚删除了所有不必要的代码。

int main()
{    
    ifstream in("example.txt");
    int LineCount = 0;
    char* str = new char[500];

    while(in)
    {
        LineCount++;
        in.getline(str, 255);
        char * tempPtr = strtok(str," ");
        while(tempPtr)
        {
            AddWord(tempPtr, LineCount);
            tempPtr = strtok(NULL," ,.");
        }
    }
    in.close();
    delete [] str;
    cout<<"Total No of lines:"<<LineCount<<endl;
    showData();

    return 0;
}

顺便说一句,最初的问题陈述是创建一个索引程序,该程序将接受用户文件并创建所有单词的行索引。

于 2009-03-16T13:29:22.343 回答
4

我没有尝试编译它,但这里有一个几乎与使用 Boost 一样简单的替代方法,但没有额外的依赖。

#include <iostream>
#include <sstream>
#include <string>

int main() {
  std::string line;
  while (std::getline(std::cin, line)) {
    std::istringstream linestream(line);
    std::string word;
    while (linestream >> word) {
      std::cout << word << "\n";
    }
  }
  return 0;
 }
于 2009-03-18T03:20:54.060 回答
0

如果您可以使用 boost 库,我建议您使用boost::tokenizer

boost Tokenizer 包提供了一种灵活且易于使用的方法来将字符串或其他字符序列分解为一系列标记。下面是一个简单的例子,它将一个短语分解成单词。

// simple_example_1.cpp
#include<iostream>
#include<boost/tokenizer.hpp>
#include<string>

int main(){
   using namespace std;
   using namespace boost;
   string s = "This is,  a test";
   tokenizer<> tok(s);
   for(tokenizer<>::iterator beg=tok.begin();beg!=tok.end();++beg){
       cout << *beg << "\n";
   }
}
于 2009-03-16T13:51:30.620 回答
0

尝试将您的 cout<<t2<<end;语句移动到您的 while 循环中。

这应该使您的代码基本上可以正常工作。

您可能希望看到这篇类似的帖子以了解其他方法。

于 2009-03-16T06:27:55.023 回答
0

网上到处都是这样的例子。这是我在高中时写的一个数词程序。以它为起点。我想指出的其他事情是:

std::stringstream :你 std::getline 整行,然后使用 std::stringstream 将其切成小块并标记它。您可以使用 std::getline 获取整行并将其输入到 std::string,然后您可以将其传递给 std::stringstream。

再一次,这只是一个示例,不会完全按照您的意愿执行,您需要自己修改它以使其执行您想要执行的操作!

#include <iostream>
#include <map>
#include <string>
#include <cmath>
#include <fstream>

// Global variables
        std::map<std::string, int> wordcount;
        unsigned int numcount;

void addEntry (std::string &entry) {
        wordcount[entry]++;
        numcount++;
        return;
}


void returnCount () {
        double percentage = numcount * 0.01;
        percentage = floor(percentage + 0.5f);

        std::map<std::string, int>::iterator Iter;

        for (Iter = wordcount.begin(); Iter != wordcount.end(); ++Iter) {
                if ((*Iter).second > percentage) {
                        std::cout << (*Iter).first << " used " << (*Iter).second << " times" << std::endl;
                }
        }

}

int main(int argc, char *argv[]) {
        if (argc != 2) {
                std::cerr << "Please call the program like follows: \n\t" << argv[0] 
                        << " <file name>" << std::endl;
                return 1;
        }

        std::string data;

        std::ifstream fileRead;
        fileRead.open(argv[1]);
        while (fileRead >> data) {
                addEntry(data);
        }
        std::cout << "Total words in this file: " << numcount << std::endl;
        std::cout << "Words that are 1% of the file: " << std::endl;
        returnCount();
}
于 2009-03-16T06:30:36.483 回答
0
ifstream is {"my_file_path"}; 
vector<string> b {istream_iterator<string>{is},istream_iterator<string>{}};

不要忘记包括这个:

<iterator>
于 2013-12-25T00:24:02.050 回答