亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用java實現馬踏棋盤

發布時間:2022-02-15 10:51:59 來源:億速云 閱讀:99 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關如何使用java實現馬踏棋盤,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

具體內容如下

  • 馬踏棋盤算法也被稱為騎士周游問題

  • 將馬隨機放在過期象棋的8x8棋盤的某個方格中,馬按走棋規則進行移動,要求每個方格只進入一次,走遍棋盤上全部64個方格

騎士周游問題結局步驟和思路

1.創建棋盤chessBoard,是一個二維數組
2.將當前位置設置為已個訪問,然后根據當前位置,計算馬兒還能走那些位置,并放到一個集合中(ArrayList),最多8個位置
3.變量ArrayList存放的所有位置,看看哪個可以走通
4.判斷馬兒是否完成了騎士周游問題

注意:馬兒不同的走法,會得到不同的結果,效率也會有影響

代碼實現

public class HorseChessBoard {

    private static int X;  //棋盤的列數
    private static int Y;  //棋盤的行數
    
    //創建數組標記棋盤各個位置是否被訪問過
    private static boolean[] visited;
    //使用一個屬性標記是否棋盤的所有位置都被訪問過,即是否成功
    private static boolean finish;  //如果為true表示成功
    
    public static void main(String[] args) {
        X = 8;
        Y = 8;
        int row = 1;
        int col = 1; 
        int[][] chessboard =  new int[X][Y];
        visited = new boolean[X * Y];
        
        long start = System.currentTimeMillis();
        traversalChessboard(chessboard, row-1, col-1, 1);
        long end = System.currentTimeMillis();
        System.out.println(end - start);
        
        for (int[] rows : chessboard) {
            for (int step : rows) {
                System.out.print(step + "  ");
            }
            System.out.println();
        }
    }
    
    //其實周游問題
    public static void traversalChessboard(int[][] chessboard, int row, int col, int step) {
        
        if (finish) return;
        chessboard[row][col] = step;
        visited[row * X + col] = true;  //標記該位置已經訪問
        //獲取當前位置可以走的下一個位置的集合
        List<Point> ps = next(new Point(col, row));
        sort(ps);
        
        //遍歷ps
        while (!ps.isEmpty()) {
            Point p = ps.remove(0);  //取出下一個可以走的位置
            //判斷該點是否已經訪問過
            if (!visited[p.y * X + p.x]) {
                traversalChessboard(chessboard, p.y, p.x, step+1);
            }
        }
        
        //1. 棋盤到目前位置任然未走完
        //2. 棋盤處于一個回溯過程
        if (step < X * Y && !finish) {
            chessboard[row][col] = 0;
            visited[row * X + col] = false;
        } else {
            finish = true;
        }
    }
    
    //根據當前這一步的所有的下一步的選擇位置進行非遞減排序
    public static void sort(List<Point> ps) {
        ps.sort(new Comparator<Point>() {

            @Override
            public int compare(Point o1, Point o2) {
                //獲取o1,o2下一步所有個數
                int count1 = next(o1).size();
                int count2 = next(o2).size();
                if (count1 < count2) {
                    return -1;
                } else if (count1 == count2) {
                    return 0;
                } else {
                    return 1;
                }
            }
        });
    }
    
    //Point:根據當前位置(point對象)
    //根據當前位置,計算馬兒還能走那些位置,并放到一個集合中(ArrayList),最多8個位置
    public static List<Point> next(Point curPoint) {
        //創建list集合
        List<Point> ps = new ArrayList<>();
        //創建一個point
        Point p1 = new Point();
        if ((p1.x = curPoint.x-2) >= 0 && (p1.y = curPoint.y-1) >= 0) {
            ps.add(new Point(p1));
        }
        
        if ((p1.x = curPoint.x-1) >= 0 && (p1.y = curPoint.y-2) >= 0) {
            ps.add(new Point(p1));
        }
        
        if ((p1.x = curPoint.x+1) < X && (p1.y = curPoint.y-2) >= 0) {
            ps.add(new Point(p1));
        }
        
        if ((p1.x = curPoint.x+2) < X && (p1.y = curPoint.y-1) >= 0) {
            ps.add(new Point(p1));
        }
        
        if ((p1.x = curPoint.x+2) < X && (p1.y = curPoint.y+1) < Y) {
            ps.add(new Point(p1));
        }
        
        if ((p1.x = curPoint.x+1) < X && (p1.y = curPoint.y+2) < Y) {
            ps.add(new Point(p1));
        }
        
        if ((p1.x = curPoint.x-1) >= 0 && (p1.y = curPoint.y+2) < Y) {
            ps.add(new Point(p1));
        }
        
        if ((p1.x = curPoint.x-2) >= 0 && (p1.y = curPoint.y+1) < Y) {
            ps.add(new Point(p1));
        }
        
        return ps;
    }

}

關于“如何使用java實現馬踏棋盤”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

隆林| 碌曲县| 五寨县| 姚安县| 山阴县| 洮南市| 马山县| 灌云县| 鹤山市| 兴业县| 拜泉县| 瑞安市| 西城区| 新野县| 新巴尔虎右旗| 育儿| 拉萨市| 辽源市| 海南省| 田阳县| 军事| 克东县| 贵州省| 台东市| 马关县| 昌都县| 莫力| 澜沧| 衢州市| 马龙县| 大埔区| 瑞安市| 兴城市| 灵璧县| 天祝| 云和县| 敖汉旗| 法库县| 西和县| 鹤壁市| 历史|