-4

我想删除文件中的一行,这是我的代码,它不起作用,但经过长时间的仔细检查,我无法弄清楚为什么。

/* A function to delete the pointed record. */

void S_O::delete_record (const string &id) {

  /* Read all records in a vector. */
  Temp_Info();

  /* Find the excat record. */
  vector<string>::iterator iter = std::find (temp_info.begin(), temp_info.end(), id);
  /* If find, then delete it. */
  if (iter != temp_info.end())
    temp_info.erase(iter);

  /* Re-input the records in file. */
  ofstream file;

  file.open ("StudentInfo");

  if (!file) {
      cerr << "error: unable to open input file: "
           << "file" <<endl;
  }
  for (size_t i = 0; i != temp_info.size(); i++)
    file << temp_info[i] << endl;

  /* Clear the vector. */
  temp_info.erase (temp_info.begin(), temp_info.end());

}

这是示例文件:

姓名(Name) 学号(Id) 性别(Sex) 成绩(Score)
黄佳敏       1         女         100
李佳惠       2         女         100

这是函数: inline void S_O::Temp_Info() {

  /* Create a stream and a file. */
  ifstream afile ("StudentInfo");

  /* Test if the file is opened successfully. */
  if (afile.is_open()) {
    while (afile.good()) {
      string line;

      /* To read file line to line. */
      while (getline(afile, line)) {
        /* To put lines into a vector. */
        temp_info.push_back(line);
      }
    }

    /* Close the stream and save the file. */
    afile.close();
  }
}

这里有什么问题?

4

3 回答 3

1

您应该为学生记录定义一个结构并将数据读入此结构。然后您可以使用std::find_if和仿函数来搜索 id:

struct find_by_id : std::unary_function<student, bool> {
    string m_id;

    find_by_id(const string &id) : m_id(id) { }
    bool operator()(const student &s) const {
        return s.id == m_id;
    }
};

it = std::find_if(temp_info.begin(), temp_info.end(), find_by_id(id));
于 2013-06-13T13:20:06.647 回答
0

您需要实现自己的查找函数,从字符串中获取 id,因为在读取整个字符串并保存时,id 位于字符串中间。

尝试有一个包含每一行所有信息的数据结构,这样访问 id 更容易找到

于 2013-06-13T13:09:26.230 回答
0

stl 有一个 find_if,它很有用

http://www.cplusplus.com/reference/algorithm/find_if/

给您一个完整的字符串,并且您有一个学生 ID,这是第二列,您可以使用 stringtokenizer 获取第二列并将其与学生 ID abd 返回 true 或 false

于 2013-06-13T13:10:35.360 回答