Chinaunix首页 | 论坛 | 博客
  • 博客访问: 690707
  • 博文数量: 148
  • 博客积分: 4086
  • 博客等级: 上校
  • 技术积分: 1766
  • 用 户 组: 普通用户
  • 注册时间: 2009-12-06 23:27
文章分类

全部博文(148)

文章存档

2013年(19)

2012年(9)

2011年(106)

2009年(14)

分类: C/C++

2012-12-04 10:21:00

#include #include #include using namespace std; ifstream& open_file(ifstream &in, const string &file) { in.close(); in.clear(); in.open(file.c_str()); return in; } int main() { set ss; set ::iterator iter; ifstream infile; ofstream ofile; if ( !open_file(infile, "1.txt") ) { cerr << "No input file!" << endl; return EXIT_FAILURE; } string textline; while (getline(infile, textline)) ss.insert(textline); ofile.open("1.txt"); for(iter=ss.begin();iter!=ss.end();iter++) ofile<<*iter<
阅读(1709) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~