- 论坛徽章:
- 0
|
- #include <iostream>
- #include <fstream>
- #include <set>
- #include <string>
- #include <iterator>
- #include <algorithm>
- using namespace std;
- int main()
- {
- string line;
- set<string> uniq_set;
- ifstream infile("pathname");
- istream_iterator<string> inbeg(infile), inend;
- copy( inbeg, inend, inserter(uniq_set, uniq_set.begin()) );
-
- infile.close();
- ofstream outfile("pathname");
-
- copy( uniq_set.begin(), uniq_set.end(), ostream_iterator<string>(outfile, "\n") );
- }
复制代码
[ 本帖最后由 antigloss 于 2007-9-19 21:39 编辑 ] |
|