溫馨提示×

溫馨提示×

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

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

java如何實現(xiàn)馬踏棋盤

發(fā)布時間:2022-02-14 14:37:13 來源:億速云 閱讀:159 作者:小新 欄目:開發(fā)技術

這篇文章給大家分享的是有關java如何實現(xiàn)馬踏棋盤的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

具體內(nèi)容如下

馬踏棋盤很好實現(xiàn),但有時運行起來特別慢,還可能出不來結果,在這里要用到貪心算法來優(yōu)化,即找出最難走的路徑,也就是下下步可下棋的位置最少。

下面給出該算法完整代碼:

/*
     * 馬踏棋盤問題:(貪婪法求解)
     * 棋盤有64個位置,“日”字走法,剛好走滿整個棋盤
     */

    //下一個走法的方向類
    class Direction{
        int x;
        int y;
        int wayOutNum;
    }

    public class Hores_chessboard_1 {
        static final int[] dx = { -2, -1, 1, 2, 2, 1, -1, -2 }; // x方向的增量  
        static final int[] dy = { 1, 2, 2, 1, -1, -2, -2, -1 }; // y方向的增量  
        static final int N = 8;     
        static int[][] chessboard = new int[N][N]; // 棋盤 

    /**
     * 
     * @param nami
     * @param x,y為棋子的位置
     * @return 如果棋子的位置不合法,則返回一個大于8的數(shù)。
     * 否則返回棋子的下個出路的個數(shù)
     */
    static int wayOut(int x, int y){        
        int count = 0;
        int tx, ty, i;
        //判斷是否超出棋盤邊界,該位置是否已經(jīng)下過
        if(x<0 || x>7 || y<0 || y>7 || chessboard[x][y]!=0){
            return 9;
        }
        for(i=0; i<N; i++){
            tx = x+dx[i];
            ty = y+dy[i];
            //如果棋子的下個出路可行,則出路數(shù)自加一次
            if(tx>-1 && tx<8 && ty>-1 && ty<8 && chessboard[tx][ty]==0)
                count++;
        }
        return count;
    }

    /**
     * 按照棋子的下個出路的個數(shù)從低到高排序
     * @param next 棋子的八個位置的數(shù)組
     */
    static void sort(Direction[] next){
        int i, j, index;
        Direction temp = null;
        //這里用的選擇排序
        for(i=0; i<N; i++){
            index = i;
            for(j=i+1; j<N; j++){
                if(next[index].wayOutNum > next[j].wayOutNum)
                    index = j;
            }
            if(i != index){
                temp = next[i];
                next[i] = next[index];
                next[index] = temp;
            }
        }
    }

    static void Move(int x, int y, int step){
        int i, j;
        int tx, ty;
        //如果step==64,則說明每個棋格都走到了,現(xiàn)在只需要打印結果就完了
        if(step == N*N){
            for(i=0; i<N; i++){
                for(j=0; j<N; j++){
                    System.out.printf("%3d", chessboard[i][j]);
                }
                System.out.println();
            }
            System.exit(0);
        }

        //下一個棋子的N個位置的數(shù)組
        Direction[] next = new Direction[N];

        for(i=0; i<N; i++){
            Direction temp = new Direction();
            temp.x = x+dx[i];
            temp.y = y+dy[i];
            next[i] = temp;
            //循環(huán)得到下個棋子N處位置的下個出路的個數(shù)
            next[i].wayOutNum = wayOut(temp.x, temp.y);
        }

        //配合貪婪算法,按下個棋子的下個出路數(shù)排序后,next[0]就是下個出路數(shù)最少的那個
        sort(next);

        for(i=0; i<N; i++){
            tx = next[i].x;
            ty = next[i].y;
            chessboard[tx][ty] = step;
            Move(tx, ty, step+1);
            /*如果上面Move()往下一步走不通,則回溯到這里
            重置chessboard[tx][ty]為0,接著i++,又循環(huán)...... */
            chessboard[tx][ty] = 0;
        }
    }

    public static void main(String[] args) {
        int i, j;
        //初始化棋盤
        for(i=0; i<8; i++){
            for(j=0; j<8; j++){
                chessboard[i][j] = 0;
            }
        }
        System.out.println("請輸入棋子開始位置(0-7):");
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        int y = sc.nextInt();
        //第一步不用比較,賦值第一步
        chessboard[x][y] = 1;
        Move(x, y, 2);      
    }
}

這里給出運算結果:

java如何實現(xiàn)馬踏棋盤

感謝各位的閱讀!關于“java如何實現(xiàn)馬踏棋盤”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節(jié)

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

AI