473,402 Members | 2,050 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,402 software developers and data experts.

How to Shuffle a deck of cards

If I wanted to create a game like Solitaire that would first randomly
shuffle a deck of cards, I figured out that all I had to use is the Random()
class or rnd and make sure I use the Randomize function so as not to get the
same card twice. BUT I noticed that some Solitaire games allow you to
select one of the 4,294,967,296 possibilities in a 52 card deck. I want to
do something similar, after I shuffle the deck I want to show the number
that represents that deck. That sounds like some kind of math algorithm and
perhaps maybe there's a dll or library out there for assigning a number to
each of the number of possibilities but was unable to find anything for use
on dotnet. Any suggestions?
thanks

Casey
Nov 20 '05 #1
6 6156
Hi Casey,

Randomize can take an optional parameter that is used as the seed for the
random number. By default, if no seed is passed, the system time is used
for the seed. If you seed the random number with a specific number then you
will always get the same sequence of numbers when you repeatedly call the
Rnd function...

\\\
Randomize(4294967296)
Console.WriteLine(Int((52 * Rnd()) + 1))
Console.WriteLine(Int((52 * Rnd()) + 1))
Console.WriteLine(Int((52 * Rnd()) + 1))
///

HTH,
Gary

"CaseyB" <ca*****@NotExist.net> wrote in message
news:ec**************@tk2msftngp13.phx.gbl...
If I wanted to create a game like Solitaire that would first randomly
shuffle a deck of cards, I figured out that all I had to use is the Random() class or rnd and make sure I use the Randomize function so as not to get the same card twice. BUT I noticed that some Solitaire games allow you to
select one of the 4,294,967,296 possibilities in a 52 card deck. I want to do something similar, after I shuffle the deck I want to show the number
that represents that deck. That sounds like some kind of math algorithm and perhaps maybe there's a dll or library out there for assigning a number to
each of the number of possibilities but was unable to find anything for use on dotnet. Any suggestions?
thanks

Casey

Nov 20 '05 #2
Hi Casey,

Randomize can take an optional parameter that is used as the seed for the
random number. By default, if no seed is passed, the system time is used
for the seed. If you seed the random number with a specific number then you
will always get the same sequence of numbers when you repeatedly call the
Rnd function...

\\\
Randomize(4294967296)
Console.WriteLine(Int((52 * Rnd()) + 1))
Console.WriteLine(Int((52 * Rnd()) + 1))
Console.WriteLine(Int((52 * Rnd()) + 1))
///

HTH,
Gary

"CaseyB" <ca*****@NotExist.net> wrote in message
news:ec**************@tk2msftngp13.phx.gbl...
If I wanted to create a game like Solitaire that would first randomly
shuffle a deck of cards, I figured out that all I had to use is the Random() class or rnd and make sure I use the Randomize function so as not to get the same card twice. BUT I noticed that some Solitaire games allow you to
select one of the 4,294,967,296 possibilities in a 52 card deck. I want to do something similar, after I shuffle the deck I want to show the number
that represents that deck. That sounds like some kind of math algorithm and perhaps maybe there's a dll or library out there for assigning a number to
each of the number of possibilities but was unable to find anything for use on dotnet. Any suggestions?
thanks

Casey

Nov 20 '05 #3
Thanks Gary for taken the time for your help,
that puts me in the right direction.

I just thought I share 2 observations:

1. When running that code I get a repeat of some numbers.
Example:
39 10 21 30 11 42 36 28 15 4 39
2. If I put the code inside a Sub and then run the same routine
within a running session you get a different set a numbers.
Example
39 10 21 30 11 42 36 28 15 4 39
32 37 10 48 42 49 19 3 38 17 50
Just for fun I tried running the sample code in the help file under
'Randomize' and added the 'For-next' to run it 6 times

Dim MyValue As Integer
Randomize
for x = 1 to 6
MyValue = CInt(Int((6 * Rnd()) + 1))
Console.WriteLine(MyValue.toString)
next x

In this case I get some duplicates there too.
I think Randomize (with/without number in arguement) just
decreases duplicate numbers but does not prevent it entirely.
I'll just have to make a routine that removes the duplicates.

Casey

----- Original Message -----
From: "Gary Milton" <an*******@discussions.microsoft.com>
Newsgroups: microsoft.public.dotnet.languages.vb
Sent: Saturday, April 10, 2004 8:44 AM
Subject: Re: How to Shuffle a deck of cards

Hi Casey,

Randomize can take an optional parameter that is used as the seed for the
random number. By default, if no seed is passed, the system time is used
for the seed. If you seed the random number with a specific number then you will always get the same sequence of numbers when you repeatedly call the
Rnd function...

\\\
Randomize(4294967296)
Console.WriteLine(Int((52 * Rnd()) + 1))
Console.WriteLine(Int((52 * Rnd()) + 1))
Console.WriteLine(Int((52 * Rnd()) + 1))
///

HTH,
Gary

"CaseyB" <ca*****@NotExist.net> wrote in message
news:ec**************@tk2msftngp13.phx.gbl...
If I wanted to create a game like Solitaire that would first randomly
shuffle a deck of cards, I figured out that all I had to use is the

Random()
class or rnd and make sure I use the Randomize function so as not to get

the
same card twice. BUT I noticed that some Solitaire games allow you to
select one of the 4,294,967,296 possibilities in a 52 card deck. I want

to
do something similar, after I shuffle the deck I want to show the number
that represents that deck. That sounds like some kind of math algorithm

and
perhaps maybe there's a dll or library out there for assigning a number to each of the number of possibilities but was unable to find anything for

use
on dotnet. Any suggestions?
thanks

Casey


Nov 20 '05 #4
Thanks Gary for taken the time for your help,
that puts me in the right direction.

I just thought I share 2 observations:

1. When running that code I get a repeat of some numbers.
Example:
39 10 21 30 11 42 36 28 15 4 39
2. If I put the code inside a Sub and then run the same routine
within a running session you get a different set a numbers.
Example
39 10 21 30 11 42 36 28 15 4 39
32 37 10 48 42 49 19 3 38 17 50
Just for fun I tried running the sample code in the help file under
'Randomize' and added the 'For-next' to run it 6 times

Dim MyValue As Integer
Randomize
for x = 1 to 6
MyValue = CInt(Int((6 * Rnd()) + 1))
Console.WriteLine(MyValue.toString)
next x

In this case I get some duplicates there too.
I think Randomize (with/without number in arguement) just
decreases duplicate numbers but does not prevent it entirely.
I'll just have to make a routine that removes the duplicates.

Casey

----- Original Message -----
From: "Gary Milton" <an*******@discussions.microsoft.com>
Newsgroups: microsoft.public.dotnet.languages.vb
Sent: Saturday, April 10, 2004 8:44 AM
Subject: Re: How to Shuffle a deck of cards

Hi Casey,

Randomize can take an optional parameter that is used as the seed for the
random number. By default, if no seed is passed, the system time is used
for the seed. If you seed the random number with a specific number then you will always get the same sequence of numbers when you repeatedly call the
Rnd function...

\\\
Randomize(4294967296)
Console.WriteLine(Int((52 * Rnd()) + 1))
Console.WriteLine(Int((52 * Rnd()) + 1))
Console.WriteLine(Int((52 * Rnd()) + 1))
///

HTH,
Gary

"CaseyB" <ca*****@NotExist.net> wrote in message
news:ec**************@tk2msftngp13.phx.gbl...
If I wanted to create a game like Solitaire that would first randomly
shuffle a deck of cards, I figured out that all I had to use is the

Random()
class or rnd and make sure I use the Randomize function so as not to get

the
same card twice. BUT I noticed that some Solitaire games allow you to
select one of the 4,294,967,296 possibilities in a 52 card deck. I want

to
do something similar, after I shuffle the deck I want to show the number
that represents that deck. That sounds like some kind of math algorithm

and
perhaps maybe there's a dll or library out there for assigning a number to each of the number of possibilities but was unable to find anything for

use
on dotnet. Any suggestions?
thanks

Casey


Nov 20 '05 #5
What's wrong with duplicate numbers? I don't think you understand the
problem that you're working on. The Rnd function is used to swap cards
in a card array. It doesn't matter if the Rnd function produces
duplicate numbers. Here's a card shuffling routine for you to try:

Dim deck(51) as Integer
Dim temp as Integer
Dim k as Integer
Dim j as Integer

'--- For game #767220
Randomize(767220)

'-- Initialize the deck
For i = 0 to 51
deck(i) = i
Next

For j = 0 To 51
k = (Int(Rnd * 51) + 1)
'Let's swap positions
temp = m_Deck(j)
m_Deck(j) = m_Deck(k)
m_Deck(k) = temp
Next

You can use Randomize to select the game number:

Randomize(198449); for game 198449
Randomize(512); for game 512
Randomize(985395); for game 985395

and so on.
CaseyB wrote:
Thanks Gary for taken the time for your help,
that puts me in the right direction.

I just thought I share 2 observations:

1. When running that code I get a repeat of some numbers.
Example:
39 10 21 30 11 42 36 28 15 4 39
2. If I put the code inside a Sub and then run the same routine
within a running session you get a different set a numbers.
Example
39 10 21 30 11 42 36 28 15 4 39
32 37 10 48 42 49 19 3 38 17 50
Just for fun I tried running the sample code in the help file under
'Randomize' and added the 'For-next' to run it 6 times

Dim MyValue As Integer
Randomize
for x = 1 to 6
MyValue = CInt(Int((6 * Rnd()) + 1))
Console.WriteLine(MyValue.toString)
next x

In this case I get some duplicates there too.
I think Randomize (with/without number in arguement) just
decreases duplicate numbers but does not prevent it entirely.
I'll just have to make a routine that removes the duplicates.

Casey

----- Original Message -----
From: "Gary Milton" <an*******@discussions.microsoft.com>
Newsgroups: microsoft.public.dotnet.languages.vb
Sent: Saturday, April 10, 2004 8:44 AM
Subject: Re: How to Shuffle a deck of cards
Hi Casey,

Randomize can take an optional parameter that is used as the seed for the
random number. By default, if no seed is passed, the system time is used
for the seed. If you seed the random number with a specific number then


you
will always get the same sequence of numbers when you repeatedly call the
Rnd function...

\\\
Randomize(4294967296)
Console.WriteLine(Int((52 * Rnd()) + 1))
Console.WriteLine(Int((52 * Rnd()) + 1))
Console.WriteLine(Int((52 * Rnd()) + 1))
///

HTH,
Gary

"CaseyB" <ca*****@NotExist.net> wrote in message
news:ec**************@tk2msftngp13.phx.gbl...
If I wanted to create a game like Solitaire that would first randomly
shuffle a deck of cards, I figured out that all I had to use is the


Random()
class or rnd and make sure I use the Randomize function so as not to get


the
same card twice. BUT I noticed that some Solitaire games allow you to
select one of the 4,294,967,296 possibilities in a 52 card deck. I want


to
do something similar, after I shuffle the deck I want to show the number
that represents that deck. That sounds like some kind of math algorithm


and
perhaps maybe there's a dll or library out there for assigning a number
to
each of the number of possibilities but was unable to find anything for


use
on dotnet. Any suggestions?
thanks

Casey



Nov 20 '05 #6
What's wrong with duplicate numbers? I don't think you understand the
problem that you're working on. The Rnd function is used to swap cards
in a card array. It doesn't matter if the Rnd function produces
duplicate numbers. Here's a card shuffling routine for you to try:

Dim deck(51) as Integer
Dim temp as Integer
Dim k as Integer
Dim j as Integer

'--- For game #767220
Randomize(767220)

'-- Initialize the deck
For i = 0 to 51
deck(i) = i
Next

For j = 0 To 51
k = (Int(Rnd * 51) + 1)
'Let's swap positions
temp = m_Deck(j)
m_Deck(j) = m_Deck(k)
m_Deck(k) = temp
Next

You can use Randomize to select the game number:

Randomize(198449); for game 198449
Randomize(512); for game 512
Randomize(985395); for game 985395

and so on.
CaseyB wrote:
Thanks Gary for taken the time for your help,
that puts me in the right direction.

I just thought I share 2 observations:

1. When running that code I get a repeat of some numbers.
Example:
39 10 21 30 11 42 36 28 15 4 39
2. If I put the code inside a Sub and then run the same routine
within a running session you get a different set a numbers.
Example
39 10 21 30 11 42 36 28 15 4 39
32 37 10 48 42 49 19 3 38 17 50
Just for fun I tried running the sample code in the help file under
'Randomize' and added the 'For-next' to run it 6 times

Dim MyValue As Integer
Randomize
for x = 1 to 6
MyValue = CInt(Int((6 * Rnd()) + 1))
Console.WriteLine(MyValue.toString)
next x

In this case I get some duplicates there too.
I think Randomize (with/without number in arguement) just
decreases duplicate numbers but does not prevent it entirely.
I'll just have to make a routine that removes the duplicates.

Casey

----- Original Message -----
From: "Gary Milton" <an*******@discussions.microsoft.com>
Newsgroups: microsoft.public.dotnet.languages.vb
Sent: Saturday, April 10, 2004 8:44 AM
Subject: Re: How to Shuffle a deck of cards
Hi Casey,

Randomize can take an optional parameter that is used as the seed for the
random number. By default, if no seed is passed, the system time is used
for the seed. If you seed the random number with a specific number then


you
will always get the same sequence of numbers when you repeatedly call the
Rnd function...

\\\
Randomize(4294967296)
Console.WriteLine(Int((52 * Rnd()) + 1))
Console.WriteLine(Int((52 * Rnd()) + 1))
Console.WriteLine(Int((52 * Rnd()) + 1))
///

HTH,
Gary

"CaseyB" <ca*****@NotExist.net> wrote in message
news:ec**************@tk2msftngp13.phx.gbl...
If I wanted to create a game like Solitaire that would first randomly
shuffle a deck of cards, I figured out that all I had to use is the


Random()
class or rnd and make sure I use the Randomize function so as not to get


the
same card twice. BUT I noticed that some Solitaire games allow you to
select one of the 4,294,967,296 possibilities in a 52 card deck. I want


to
do something similar, after I shuffle the deck I want to show the number
that represents that deck. That sounds like some kind of math algorithm


and
perhaps maybe there's a dll or library out there for assigning a number
to
each of the number of possibilities but was unable to find anything for


use
on dotnet. Any suggestions?
thanks

Casey



Nov 20 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

23
by: JC | last post by:
I am very new to programming and learning on my own. Why do I keep getting duplicate values using this code? I want to shuffle a deck of 52 cards. The logic seems right to me. Randomize For...
6
by: CaseyB | last post by:
If I wanted to create a game like Solitaire that would first randomly shuffle a deck of cards, I figured out that all I had to use is the Random() class or rnd and make sure I use the Randomize...
4
by: Pratik | last post by:
For the time being, I'm doing a simple swap method for my deck of cards using the random number generator in cstdlib. I've created a dynamic array of a type class Card. When I go to shuffle it and...
4
by: tvance929 | last post by:
Hey everyone, I created a theDeck class that creates a 52 card int List. Inside of this class I have a ShuffleCards method. I simply want 2 seperate decks that I can then shuffle and...
8
by: l1nuxxx | last post by:
I have a file well call file.pl. It's a card sorting program. I need to create a lib fuction with part of the original file that shuffles the deck of cards. After it shuffles the first deck and deals...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.