我在填充一系列卡片时遇到了麻烦。我的程序中有大约3种改组方法,但它们似乎都没有。如果有人能帮我解决这个问题,那就太好了。我有一个充满卡片的文件夹,名为1.png,2.png .... 52.png
public class CardButton extends JButton{
ImageIcon front, back;
boolean flipped;
public CardButton(ImageIcon front, ImageIcon back)
{
this.front = front;
this.back = back;
flipped = true;
flip();
}
public void flip()
{
flipped = !flipped;
if (flipped)
this.setIcon(front);
else
this.setIcon(back);
}
}
public class CardButtonPanel extends JPanel {
CardButton b, b1, b2, b3;
ImageIcon back, card1, card2, card3;
int count;
ActionListener taskPerformer;
Timer t1;
// Instantiating a new array
CardButton[] array;
public CardButtonPanel() {
int w = 72, h = 86;
back = new ImageIcon(getClass().getResource("b2fv.png"));
Image i1 = back.getImage();
Image i2 = i1.getScaledInstance(w, h, Image.SCALE_DEFAULT);
back.setImage(i2);
array = new CardButton[53];
List list = Arrays.asList(array);
Collections.shuffle(list);
for (int i = 1; i < array.length; i++) {
// int j = shuffle();
card1 = new ImageIcon(getClass().getResource(i + ".png"));
i1 = card1.getImage();
i2 = i1.getScaledInstance(w, h, Image.SCALE_DEFAULT);
card1.setImage(i2);
b1 = new CardButton(card1, back);
b1.addActionListener(new ButtonHandler1());
add(b1);
array[i] = b1;
}
taskPerformer = new ActionListener() {
public void actionPerformed(ActionEvent evt) {
b1.flipped = true;
b1.flip();
}
};
t1 = new Timer(200, taskPerformer);
t1.setRepeats(false);
}
/*
* public void shuffle() { currentCard = 1; for (int i = 1; i<array.length;
* i++) { int second = randomNumbers.nextInt(52);
*
*
* } }
*
* public int randomInteger(int x, int y) { Random rInteger = new Random();
* // int IntegerRandom = rInteger.nextInt((x-y) +1) + x; int IntegerRandom
* = rInteger.nextInt(52); return IntegerRandom; }
*
* public void swapCards(int i, int j) { CardButton temp = array[i];
* array[i] = array[j]; array[j] = temp; }
*
* public void shuffle() { for (int i = 0; i < array.length; i++) { int j =
* randomInteger(i, array.length - 1); } }
*/
/*
* public static int[][] randomize(int rows, int cols) { int[][] temp = new
* int[4][13]; Random randomize = new Random(); // int stuff; for (int i =
* 0; i < temp.length; i++) { // temp[i] = new int[cols]; for (int j = 0; j
* < temp[i].length; j++) temp[i][j] = (int) ((Math.random()) * (rows *
* cols)); // stuff = randomize.nextInt(52); } return temp; }
*/
private class ButtonHandler1 implements ActionListener {
public void actionPerformed(ActionEvent e) {
// Need to create for loop for printing out how many attempts
int i = 0;
System.out.println(i + 1);
CardButton tempCB = (CardButton) e.getSource();
if (!tempCB.flipped && !t1.isRunning()) {
tempCB.flip();
count++;
}
if (count > 1) {
t1.start();
count = 0;
}
}
}
}
我实际上试图创建另一个shuffle类。
public class Shuffle {
public static int[] shuffleCards(int[] cards) {
for (int i = 1; i < cards.length; i++) {
int rand = new Random().nextInt(cards.length-i)+i;
int temp = cards[i];
cards[i] = cards[rand];
cards[rand] = temp;
}
return cards;
}
}
我不知道如何在我的CardButtonPanel中实现这一点,所以我不太确定它是否有效。
答案 0 :(得分:1)
使用最佳 Fisher Yates 改组算法
示例代码:
import java.util.*;
class Test
{
public static void main(String args[])
{
int[] solutionArray = { 1, 2, 3, 4, 5, 6, 16, 15, 14, 13, 12, 11 };
shuffleArray(solutionArray);
for (int i = 0; i < solutionArray.length; i++)
{
System.out.print(solutionArray[i] + " ");
}
System.out.println();
}
// Implementing Fisher–Yates shuffle
static void shuffleArray(int[] ar)
{
Random rnd = new Random();
for (int i = ar.length - 1; i > 0; i--)
{
int index = rnd.nextInt(i + 1);
// Simple swap
int a = ar[index];
ar[index] = ar[i];
ar[i] = a;
}
}
}
答案 1 :(得分:0)
你可以通过两种方式进行改组: -
1)Fisher Yates算法是最好的选择之一。
2)否则您可以创建卡片列表并进行收集。然后使用Collections.shuffle
link for tutorial。到目前为止我用过的最简单的方法之一。
看看这个问题是为了方便。 question