-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShuffler.java
42 lines (38 loc) · 1.29 KB
/
Shuffler.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
Shuffler class.
Constructs deck of cards (sorted order) and prints cards on singe line
Implements inShuffle, outShuffle and a test for original sorted order
*/
import java.util.*;
import java.io.*;
public class Shuffler
{
public static void main(String[] args)
{
if ( args.length < 1 )
{
System.out.println("Must enter deck size (even number) on cmd line\n");
System.exit(0);
}
Deck deck = new Deck( Integer.parseInt( args[0] ) ); // starts out in sorted order 1 2 3 4 5 . . .
int numShuffles=0;
System.out.println("IN-SHUFFLING:");
System.out.format( "%2d shuffles: %s\n", numShuffles, deck );
do // IN-SHUFFLE UNTIL DECK IS BACK IN ORIGINAL (SORTED) ORDER
{
deck.inShuffle();
++numShuffles;
System.out.format( "%2d shuffles: %s\n", numShuffles, deck );
} while ( !deck.inSortedOrder() );
System.out.println("OUT-SHUFFLING:");
deck = new Deck( Integer.parseInt( args[0] ) ); // starts out in sorted order 1 2 3 4 5 . . .
numShuffles=0;
System.out.format( "%2d shuffles: %s\n", numShuffles, deck );
do // OUT-SHUFFLE UNTIL DECK IS BACK IN ORIGINAL (SORTED) ORDER
{
deck.outShuffle();
++numShuffles;
System.out.format( "%2d shuffles: %s\n", numShuffles, deck );
} while ( !deck.inSortedOrder() );
}
}