7

我在尝试创建“shuffleDeck()”方法时遇到了困难。

我要做的是创建一个方法,该方法将采用数组参数(将是一副牌)洗牌,并返回洗牌后的数组列表。

这是代码:

class Card
{
    int value;
    String suit;
    String name;

    public String toString()
    {
        return (name + " of " + suit);
    }
}

public class PickACard
{
    public static void main( String[] args)
    {   
        Card[] deck = buildDeck();
        // display Deck(deck); 

        int chosen = (int)(Math.random()* deck.length);
        Card picked = deck[chosen];

        System.out.println("You picked a " + picked + " out of the deck.");
        System.out.println("In Blackjack your card is worth " + picked.value + " points.");

    }

    public static Card[] buildDeck()
    {
        String[] suits = {"clubs", "diamonds", "hearts", "spades" };
        String[] names = {"ZERO", "ONE", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "Jack", "Queen", "King", "Ace" };

        int i = 0;
        Card[] deck = new Card[52];

        for ( String s: suits )
        {   
            for ( int v = 2; v<=14; v++)
            {
                Card c = new Card();
                c.suit = s;
                c.name = names[v];
                if ( v == 14)
                    c.value = 11;
                else if ( v>10)
                    c.value = 10;
                else
                    c.value = v; 

                deck[i] = c;
                i++;
            }
        }
        return deck; 
    }

    public static String[] shuffleDeck( Card[] deck) 
    {
        /** I have attempted to get two index numbers, and swap them. 
        I tried to figure out how to loop this so it kind of simulates "shuffling". 
        */
    }

    public static void displayDeck( Card[] deck)
    {
        for ( Card c: deck) 
        {   
            System.out.println(c.value + "\t" + c);
        }
    }
}
4

4 回答 4

11

怎么样:

List<Card> list =  Arrays.asList(deck);
Collections.shuffle(list);

或单线:

Collections.shuffle(Arrays.asList(deck));
于 2013-08-27T15:49:17.370 回答
3

一种方法是将数组转换为列表,并使用java.util.Collections.shuffle(array)它来洗牌:

Card[] deck = ...;
List<Card> list = Arrays.asList(deck);
Collections.shuffle(list);

如果您仍然需要一个数组而不是列表,您可以添加:

list.toArray(deck);

这是一个 TIO (Try-it-online) 链接,用于查看数组到列表转换和洗牌的实际效果。

TIO 的代码复制如下作为参考:

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

class M{
  public static void main(String[] a){
    // Original array
    Integer[] array = new Integer[]{ 1, 2, 3, 4, 5, 6, 7, 8, 9 };
    System.out.println("before: " + Arrays.toString(array));

    // Convert array to list
    List<Integer> list = Arrays.asList(array);
    // And shuffle that list
    Collections.shuffle(list);
    System.out.println("after as list: " + list);

    // (Optional) then convert the list back to an array,
    // and save it in its initial variable (`array` in this case)
    list.toArray(array);
    System.out.println("after as array: " + Arrays.toString(array));
  }
}
于 2017-05-10T12:20:42.870 回答
0

如果这是用于学校项目(我认为是这样),则可能不允许您使用内置函数,例如 Collections::shuffle()。如果是这种情况,那么您必须尝试模拟随机性(这在编程中可能非常困难)。

产生随机感的最常见方法是使用RNG(随机数生成器)。如你所说

我试图获得两个索引号,并交换它们。

正确的。洗牌的一种方法是一次选择一张牌,然后随机选择另一张牌交换位置。

  • 你知道一副牌总是有 52 张牌。
  • 您有一个随机生成器来选择一个随机索引。
  • 你有一种带有循环结构的编程语言。

使用这些工具,您可以很容易地实现自己的 shuffle 功能。

于 2013-08-27T16:07:16.870 回答
0

我看到了两种方法:

->如果您想自己实现该方法,可以使用像Fisher-Yates shuffle算法这样的 shuffle 算法。

-> 您可以使用 Collections 中的 shuffle 方法

于 2013-08-27T15:56:32.140 回答