摘要: #include #include using namespace std;set s; int num=100; ////数组的取值范围,最大值为num。 int kk=10; ////kk,不重复数组元素个数。while(kk--) { int r=(int)(num*rand()/(RAND_MAX+1.0)); s.insert(r); }////利用迭代器按顺序输出序列值 for(set::iterator it = s.begin(); it != s.end(); it++) { cout<<*it<<endl; } 阅读全文
posted @ 2013-09-24 20:57 我的星空 阅读(326) 评论(0) 推荐(0) 编辑