簡體   English   中英

是否可以使用 boolean 而不是列表以這種方式進行洗牌?

[英]Is it possible to do a shuffle in this manner with a boolean instead of a list?

在這里,我的代碼(在 Eclipse 上的 Java 中)顯示來自文件的 3 張隨機卡片。 我試圖讓一個洗牌按鈕工作並隨機洗牌 3 張新牌。 我使用了“Collections.shuffle(cards);” 並將我的 boolean 數組傳遞給它,但它說我不能,因為它想要一個 List<> 列表。 是否可以讓洗牌與我的 boolean 一起使用,還是我必須使用列表?

這是我的代碼:

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

import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.GridPane;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;

public class DisplayCards extends Application {
    
    HBox imageViews;

    
    @Override
    public void start(Stage primaryStage) throws Exception {
        GridPane pane = new GridPane();
        pane.setAlignment(Pos.CENTER);
        boolean[] cards = new boolean[52];
        int count = 0;
        while(count <3) {
            int card = (int)(Math.random() * 52);
            
            if(!cards[card]) {
                cards[card] = true;
                pane.add(new ImageView(new Image("card/" + (card) + ".png")), count, 0);
                count++;
            }
        }
        imageViews = new HBox();
        imageViews.setAlignment(Pos.CENTER);
        
        shuffle();
    
        
        Button btnShuffle = new Button("Shuffle");
        btnShuffle.setOnAction(new EventHandler<ActionEvent>() {
            
            public void handle(ActionEvent event) {
                shuffle();
                
            }
        });
        
        BorderPane Bpane = new BorderPane();
        Bpane.setCenter(imageViews);
        Bpane.setBottom(btnShuffle);
        
        Scene scene = new Scene(pane, 250, 150);
        primaryStage.setTitle("Display 4 Cards");
        primaryStage.setScene(scene);
        primaryStage.show();
        
    }

    private void shuffle() {
        Collections.shuffle(cards);
        
    }

    public static void main(String[] args) {
        launch(args);
    }

    

}

您可以為數組實現 Fisher-Yates 洗牌。

private void shuffle(){
    for(int i = cards.length - 1; i > 0; i++){
        int j = java.util.concurrent.ThreadLocalRandom.current().nextInt(i + 1);
        boolean temp = cards[i];
        cards[i] = cards[j];
        cards[j] = temp;
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM