//: C02:Fillvector.cpp
// Copy an entire file into a vector of string
#include <string>
#include <iostream>
#include <fstream>
#include <vector>
using namespace std;
int main()
{
vector<string> v;
ifstream in("Fillvector.cpp");
string line;
while (getline(in, line))
v.push_back(line); // Add the line to the end
// Add line numbers;
for(int i = 0; i < v.size(); i++)
cout << i << ": " << v[i] << endl;
} ///:~
在书上看到这个例子
题目是修改Fillvector.cpp使他能从后向前打印各行
如果用for递减,从末尾向开头输出,出现错误
我知道如果换一个容器可能就可以了
但是还是需求一下使用vector反向输出的方法
或者从最后一行开始反过来存入vector
谢谢大家帮忙
[此贴子已经被作者于2007-8-2 15:23:16编辑过]