- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在洗牌数组时遇到问题。我的程序中有大约 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 中,所以我不太确定它是否有效。
最佳答案
使用最佳 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;
}
}
}
关于java - 洗牌阵列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26824864/
我有一个关于将字符串分配给数组编号的问题。 我已经声明了字符串数组,例如。 String[] answer = {"yes", "no", "maybe"}; 如何在不使用这种方法的情况下将每个字符串
我正在为云数据库使用 Firebase 编写一个 Android 应用程序。它基本上是一个多项选择调查问题应用程序。导入到我的 Firebase { "multiple_choice" : {
我想将输入文件中的以下行存储到 3D 数组中(不包括第一行。)第一行表示后续行的数量。 3 4 9368 86 843 23224 4 7323 2 2665 2665 8447 47 843 527
这是我关于容器的小大问题,尤其是数组。 我正在编写一个物理代码,主要操纵一大组(> 1 000 000)“粒子”(每个粒子有 6 个 double 坐标)。我正在寻找最佳方式(在性能方面)来实现一个类
我有一个超链接,我需要在 Angular 4 中创建一个路由器链接。我有很多部分指向 url,其中一部分是一个数组。我不确定如何让数组将自己拆分成 routerlink 数组的部分。 以这个人为的例子
大家好,我有一个轮子选择器在工作,但目前它正在为所有轮子提取 0-9 的数字。我希望能够设置值而不是 0-9 我希望它是从数组或字符串中提取的单词,所以我可以输入它们 myslef 因为我不确定目前从
我正在尝试使用 Spotify API 并进入数组。 const App = () => { const [isLoading, setIsLoading] = useState(true);
我尝试创建 Tic Tac Toe,我能够填满我的棋盘,并且能够检查行和列以确定谁获胜。然而,我需要一些帮助来检查对角线,看看谁赢了。这是我到目前为止所拥有的。我是初学者,所以请不要让代码太难。 检查
--in the package type t_array is array (natural range <>) of std_logic_vector (7 downto 0); type p_a
我在访问字符串数组时遇到困难。它被声明为私有(private)数组并填充在类的构造函数中。我定义了一个 Get 函数。问题是当我在编译时调用此函数时出现错误,提示我无法访问在类中声明的私有(priva
无法弄清楚推送到 Moose 数组的语法(我确信这很明显,而且我很愚蠢)。这是 this question 的延续.在我看来,对于我的具体情况,我需要的不仅仅是一个简单的值。尝试使用 Moose 式的
我有一个 3d 数组,我正在尝试从中获取刺伤列表。换句话说,给定数组: t = np.array([[[1,2],[3,4]],[[5,6],[7,8]],[[9,10],[11,12]]]) arr
我正在寻找绘制一个 3 维数组。有没有一种方法可以直接输入数组,绘制体素并在 3d 数组中的位置产生的坐标处绘制实际值(颜色)?到目前为止我发现的所有方法(例如 ax.voxels、mlab.poin
我正在尝试使用 Knockout 创建一个简单的电子表格。我试图让每个单元格都可观察,以便在发生变化时,我可以评估值并进行相应的计算。因此,如果他们在单元格中输入 6+7,我可以评估并将该值更改为总数
我有当前时间和这组时间。我想计算出下一次与当前时间最接近的时间。 let date = NSDate() let calendar = NSCalendar.currentCalendar() let
我想在我的小程序中创建一个二维图像数组。我需要一个 4x4 网格,其中有 4 个图像,每个图像 4 个随机分布在阵列中。这里有一些答案,但我不明白如何使用它们。 最佳答案 您可以声明 Image[][
基本上,此代码列出了“可用”挑战,其中 complete = 0 并在每个列表中都有一个接受submit 按钮。到目前为止,我一次只能列出一项,因为列出的多个按钮无法识别匹配 ID $echo 任何人
我正在尝试创建一个带有动态变量的过滤数组。我创建一个包含过滤器键的数组,然后创建一个过滤后的数组,该数组只应返回与第一个数组中的键匹配的项目。 带有过滤器键的数组:$scope.participant
我是一个相对年轻的开发人员,我对一些事情感到困惑。 这是我的代码: function pairElement(str) { var arr = []; var pairs = [
我正在 Angular 中创建一个函数,我想抓取所有博客文章,其类别与单击的按钮相匹配,我的 Firebase 中有 3 个不同的字段,标题为类别 1、类别 2 和类别 3。例如,当用户单击新闻通讯时
我是一名优秀的程序员,十分优秀!