main167.cpp
#include <iostream>
#include <vector>
#include <algorithm>//STL算法
//我觉得那个矢量会非常大,会不会是我理解错了?
//果然是我理解错了,这里是指不能生成相同的数,因为抽过了这个数就会
//消失,就像双色球一样
using namespace std;
static vector<int> Lotto(int a,int b)
{
vector<int> choice;//存放矢量的vector
vector<int> result;//存放抽到的数组
for(int i=1;i<=a;i++)
choice.push_back(i);//这个就是那个矢量,我还以为矢量是指所有的结果集
for(int j=0;j<b;j++)//抽取数字
{
random_shuffle(choice.begin(),choice.end());
result.push_back(choice[0]);
//choice.erase(choice[0]);//删除指定元素,必须用迭代器
choice.erase(choice.begin());//保证不会抽到同一元素
}
return vector<int>(result);
}
static void output(int n)
{
cout<<n<<" ";
}
void main167()
{
vector<int> winners;
winners=Lotto(51,6);
//vector<int> winners=Lotto(10,3);
//winners=Lotto(51,6);
for_each(winners.begin(),winners.end(),output);
cin.get();
}