使用输入输出流迭代器读取和写入文件
扫描二维码
随时随地手机看文章
目标1:使用istream_iterator读取一个文件的内容(为数字),使用ostream_iterator将奇数写入第一个文件中,每个值之后都跟一个空格;将偶数写入第二个文件中,每个值占一行。
#include#include#include#include#includeint main() { ifstream infile("numbers.txt");//创建文件输入流,指向numbers.txt,此文件需要首先保存在工程目录下 ofstream outfile_1("jishu.txt");//创建文件输出流1,指向jishu.txt ofstream outfile_2("oushu.txt");//创建文件输出流2,指向oushu.txt if(!infile|!outfile_1|!outfile_2)//检查文件是否存在 { cout<<"file does't exist !"<<endl; return -1; } istream_iteratorin_iter(infile),eof;//创建输入流迭代器,指向infile,eof用于判断文件末尾 ostream_iteratorout_iter_1(outfile_1," ");//创建输出流迭代器,每个元素后跟空格 ostream_iteratorout_iter_2(outfile_2,"n");//创建输出流迭代器,每个元素后跟换行 vectorvec(in_iter,eof);//将输入流读取的文件内容复制到vec中 for(auto p=vec.begin();p!=vec.end();p++) { if(*p%2==1)//数据为奇数 copy(p,p+1,out_iter_1); else//数据为偶数 copy(p,p+1,out_iter_2); } system("pause"); return 0; }
目标2:读取一个文档中单词出现的次数,要求使用关联容器map.
#include#include#include#include#includeusing namespace std; int main() { mapword_count;//创建关联容器 string word; ifstream ifile("words.txt");//打开文件 if(!ifile)//对文件进行检查 { cout<<"Can't open the file!"<<endl; exit(0); } istream_iteratoriter(ifile),eof;//创建输入流迭代器,指向打开的文件 auto p=iter; while(p!=eof)//遍历文件,对单词进行计数 { word=*p++; ++word_count[word]; } for(auto w=word_count.begin();w!=word_count.end();w++) cout<first<<" occurs "<second<second>1)?" times":" time")<<endl;//向屏幕输出每个单词出现的次数 system("pause"); return 0; }
测试时先要在工程目录先新建words.txt文件
写文件:
[cpp] view plain copy#include