Ho difficoltà a provare a creare un metodo "shuffleDeck()".Come "shuffle" un array?
Quello che sto cercando di fare è creare un metodo che utilizzi un parametro dell'array (che sarà il mazzo di carte) mischiare le carte e restituire l'elenco di matrici shuffled.
Questo è il codice:
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);
}
}
}
Converti l'array in un 'Elenco' e chiama' Collections.shuffle (list) '. –
Sì, è così! – LastFreeNickname
Il codice che hai postato non ha senso perché manca la parte più importante - la tua implementazione shuffle tentata. Ho votato per chiudere perché non sembra che tu abbia mai tentato di farlo. –