查找所有子字符串的出现次数和位置

时间:2010-10-27 15:10:23

标签: c++ iostream stdio

我正在编写一个程序来解析保存为文本文件的一些数据。我想要做的是找到大海捞针中每根针的位置。我已经可以读取文件并确定出现的次数,但我也希望找到索引。

2 个答案:

答案 0 :(得分:25)

string str,sub; // str is string to search, sub is the substring to search for

vector<size_t> positions; // holds all the positions that sub occurs within str

size_t pos = str.find(sub, 0);
while(pos != string::npos)
{
    positions.push_back(pos);
    pos = str.find(sub,pos+1);
}

修改 我误读了你的帖子,你说子串,我认为你的意思是你正在搜索一个字符串。如果您将文件读入字符串,这仍然有效。

答案 1 :(得分:5)

我知道答案已被接受,但这也会有效,并且可以节省您必须将文件加载到字符串中。

#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>

using namespace std;

int main(void)
{
  const char foo[] = "foo";
  const size_t s_len = sizeof(foo) - 1; // ignore \0
  char block[s_len] = {0};

  ifstream f_in(<some file>);

  vector<size_t> f_pos;

  while(f_in.good())
  {
    fill(block, block + s_len, 0); // pedantic I guess..
    size_t cpos = f_in.tellg();
    // Get block by block..
    f_in.read(block, s_len);
    if (equal(block, block + s_len, foo))
    {
      f_pos.push_back(cpos);
    }
    else
    {
      f_in.seekg(cpos + 1); // rewind
    }
  }
}