发牌(从m个数字中随机选不同的n个数)

 // TextArea.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
#include <time.h>
using namespace std ;


void GetRand( int all[],int* rnd  ,int size);//从一个数组中随机地抽取几个数字,并保存起来
int _tmain(int argc, _TCHAR* argv[])
{
 int all[54];//总共有54张牌

 int size= int ( sizeof(all) / sizeof(all[0]) );//数组的个数

 for (int i= 0 ;i< size; ++i)//给牌赋值
 { 
  all[i]= i+1;
 }
 int rnd[54];
 GetRand( all,rnd,  size);//分别从54张牌中随机不放回抽取
 for (int i= 0 ;i<54 ;++i)//显示
 {
  if (i % 6 == 0 )
   cout <<endl;
  cout << rnd[i] <<"   ";
 }
 

 cout <<"tmljs";
 system("pause");
 return 0;
}

void GetRand( int all[], int* rnd  ,int size)
{
 int index= size;
 
 srand(unsigned (time(0)));
 for (int i=0; i< size ;++i)
 {
  int r= rand() % index;
  rnd[i]= all[r];
  all[r]= all[index - 1];
  --index;
 }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值