一个翻牌算法

自己对一个翻牌算法的实现:

 

题目:拿出从A到10的10张扑克牌,背面朝上摞在一起。首先把最上面的一张挪到下面,掀开新出现的一张牌是A,取出,再挪一张牌到下面,翻一张是2,依次类推,可以有顺序地翻出A到10的牌来。请问这10张牌最初是怎么排列的?

 

 1 static void QueueImplement(int pokerCount = 10)
 2         {
 3             Queue primaryQueue = new Queue();
 4             Queue result = new Queue();
 5             for (int i = 1; i <= pokerCount; i++)
 6             {
 7                 primaryQueue.Enqueue(new PokerPosition() { orderInQueue = i, poker = new Poker() });
 8             }
 9 
10             for (int order = 1; primaryQueue.Count > 0; order++)
11             {
12                 PokerPosition position = (PokerPosition)primaryQueue.Dequeue();
13                 if (order % 2 == 0)
14                 {
15                     //取出
16                     position.poker.num = result.Count + 1;
17                     result.Enqueue(position);
18                 }
19                 else
20                 {
21                     primaryQueue.Enqueue(position);
22                 }
23             }
24         }

 

 

 1 struct Poker
 2     {
 3         public int num;
 4         string type;
 5     }
 6 
 7     struct PokerPosition
 8     {
 9         public int orderInQueue;
10         public Poker poker;
11     }

 

转载于:https://www.cnblogs.com/anthonyBlog/archive/2013/02/21/2921273.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值