| ||||||||||
| Online Judge | Problem Set | Authors | Online Contests | User | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest | |||||||||
setIn Reply To:我把源程序贴出来,你们自己比较吧 Posted by:frkstyc at 2005-06-06 17:10:49 #include <fstream>
#include <set>
using namespace std;
int main(void)
{
set<int> array;
ifstream fin("data.txt");
copy(istream_iterator<int>(fin), istream_iterator<int>(), inserter(array, array.begin()));
fin.close();
ofstream fout("output.txt");
copy(array.begin(), array.end(), ostream_iterator<int>(fout, "\n"));
fout.close();
return 0;
}
Followed by: Post your reply here: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator