- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我被困在扩展 exercise 28.2 of How to Design Programs .我使用真值或假值的向量来表示板,而不是使用列表。这是我所拥有的,但不起作用:
#lang Scheme
(define-struct posn (i j))
;takes in a position in i, j form and a board and
; returns a natural number that represents the position in index form
;example for board xxx
; xxx
; xxx
;(0, 1) -> 1
;(2, 1) -> 7
(define (board-ref a-posn a-board)
(+ (* (sqrt (vector-length a-board)) (posn-i a-posn))
(posn-j a-posn)))
;reverse of the above function
;1 -> (0, 1)
;7 -> (2, 1)
(define (get-posn n a-board)
(local ((define board-length (sqrt (vector-length a-board))))
(make-posn (floor (/ n board-length))
(remainder n board-length))))
;determines if posn1 threatens posn2
;true if they are on the same row/column/diagonal
(define (threatened? posn1 posn2)
(cond
((= (posn-i posn1) (posn-i posn2)) #t)
((= (posn-j posn1) (posn-j posn2)) #t)
((= (abs (- (posn-i posn1)
(posn-i posn2)))
(abs (- (posn-j posn1)
(posn-j posn2)))) #t)
(else #f)))
;returns a list of positions that are not threatened or occupied by queens
;basically any position with the value true
(define (get-available-posn a-board)
(local ((define (get-ava index)
(cond
((= index (vector-length a-board)) '())
((vector-ref a-board index)
(cons index (get-ava (add1 index))))
(else (get-ava (add1 index))))))
(get-ava 0)))
;consume a position in the form of a natural number and a board
;returns a board after placing a queen on the position of the board
(define (place n a-board)
(local ((define (foo x)
(cond
((not (board-ref (get-posn x a-board) a-board)) #f)
((threatened? (get-posn x a-board) (get-posn n a-board)) #f)
(else #t))))
(build-vector (vector-length a-board) foo)))
;consume a list of positions in the form of natural numbers, and a board
;returns a list of boards after placing queens on each of the positions
; on the board
(define (place/list alop a-board)
(cond
((empty? alop) '())
(else (cons (place (first alop) a-board)
(place/list (rest alop) a-board)))))
;returns a possible board after placing n queens on a-board
;returns false if impossible
(define (placement n a-board)
(cond
((zero? n) a-board)
(else (local ((define available-posn (get-available-posn a-board)))
(cond
((empty? available-posn) #f)
(else (or (placement (sub1 n)
(place (first available-posn) a-board))
(placement/list (sub1 n)
(place/list (rest available-posn) a-board)))))))))
;returns a possible board after placing n queens on a list of boards
;returns false if all the boards are not valid
(define (placement/list n boards)
(cond
((empty? boards) #f)
((zero? n) (first boards))
((not (boolean? (placement n (first boards)))) (first boards))
(else (placement/list n (rest boards)))))
最佳答案
这不是最快的方案实现,但它非常简洁。我确实独立提出了它,但我怀疑它是独一无二的。它在 PLT Scheme 中,因此需要更改一些函数名称才能使其在 R6RS 中运行。解决方案列表和每个解决方案都是用缺点构建的,所以它们是相反的。最后的反转和映射重新排序所有内容并将行添加到解决方案中以获得漂亮的输出。大多数语言都有折叠类型功能,请参阅:
http://en.wikipedia.org/wiki/Fold_%28higher-order_function%29
#lang scheme/base
(define (N-Queens N)
(define (attacks? delta-row column solution)
(and (not (null? solution))
(or (= delta-row (abs (- column (car solution))))
(attacks? (add1 delta-row) column (cdr solution)))))
(define (next-queen safe-columns solution solutions)
(if (null? safe-columns)
(cons solution solutions)
(let move-queen ((columns safe-columns) (new-solutions solutions))
(if (null? columns) new-solutions
(move-queen
(cdr columns)
(if (attacks? 1 (car columns) solution) new-solutions
(next-queen (remq (car columns) safe-columns)
(cons (car columns) solution)
new-solutions)))))))
(unless (exact-positive-integer? N)
(raise-type-error 'N-Queens "exact-positive-integer" N))
(let ((rows (build-list N (λ (row) (add1 row)))))
(reverse (map (λ (columns) (map cons rows (reverse columns)))
(next-queen (build-list N (λ (i) (add1 i))) null null)))))
(define (next-queen safe-columns solution solutions)
(if (null? safe-columns)
(cons solution solutions)
(let move-queen ((columns safe-columns) (new-solutions solutions))
(if (null? columns) new-solutions
(move-queen
关于scheme - 如何解决Scheme中的N-Queens?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2595132/
有没有人从 perl journal 那里得到完整的程序? https://www.foo.be/docs/tpj/issues/vol1_4/tpj0104-0001.html 更具体地说,下面的链
我被困在扩展 exercise 28.2 of How to Design Programs .我使用真值或假值的向量来表示板,而不是使用列表。这是我所拥有的,但不起作用: #lang Scheme
为了练习我所学到的回溯算法,我正在尝试解决 N-Queen 问题。 我编写了一些函数来检查移动是否合法,但我不知道如何使用回溯来实现这些函数。 bool manger_ligne (int a[][4
所以我必须做 N 皇后问题的修改版本,其中我们给出了充满棋子的棋盘的初始配置,并且我们需要找到我们可以拥有的皇后的最大数量,这样他们就不会'不要互相攻击。输入由第一行中的一个整数组成,该整数给出了棋盘
下面是我的代码,我不知道哪里错了它编译得很好,但没有打印出正确的结果;;;如果 N 是 4 ,结果应该是2 4 1 3但是,它打印了1 3 0 0 我猜 for-loop 有问题,因为当我使用另一个值
我正在解决n-queen问题,但由于某种原因我遇到了一个问题,while循环不断循环而不迭代,tempx和tempy不会按i/j上升。结果一直输出0,0 public static boolean i
问题在这里:B. 8 Queens, Again!! 我认为我没有遇到最坏的情况或遗漏了什么。我的提交在测试 2 中失败。 我刚刚用下一个输入检查了每个输入的行、列和对角线。我认为这就足够了。还有其他
我有一个 - 字符列表列表,它充当一个网格。 我想将每个列和行的一个 - 更改为 Q。 这是我到目前为止所得到的: import pprint import random # I impo
我正在研究 N-Queens 以自行实现它,并且遇到了以下规则的实现: The n-queens puzzle is the problem of placing n queens on an n×n
我正在尝试编写一个程序,使用二维 boolean 数组解决 8 Queens 问题。我将使用回溯来找到解决方案。我知道这不是解决此问题的最佳方法,为了简单起见,我可能应该使用一维数组,但我想以这种方式
我是递归和回溯的新手。我正在尝试完成 N-Queen 问题以打印所有解决方案而不是仅 1 个解决方案并理解这些概念。 我认为我已经部分正确地实现了算法,因为我得到了一些解决方案但没有全部打印出来。我的
这是我第一次在这里发布问题,所以请放轻松。 我最近遇到了 n-queen/8 queen 问题,觉得很有趣就试了一下 我为这个问题编写了一个基本代码,但它没有给出任何输出。当我尝试调试它时,它表明流程
我想我理解 NQueens 算法的重点 - 您检查每一行是否存在可用空间,如果它们存在,则在那里放置一个皇后,然后递归地将算法调用到下一行。这是我的算法(N 大小为 3) from typing im
n-皇后拼图是将n 个皇后放在n x n 棋盘上的问题,这样就不会有两个皇后互相攻击。 给定一个整数 n,返回 n-queens 谜题的不同解的数量。 https://leetcode.com/pro
我在使用模拟退火算法来解决 n 皇后问题时遇到了一些麻烦。基本上,我让它寻找更好的更多,效果很好,但然后我运行一个公式来检查它是否应该采取“坏” Action 。据我了解,公式为e^(板状态计算变化)
我正在编写臭名昭著的 N-Queens 问题。但是我有一个问题。该程序正在执行,但没有按预期提供输出,因为我遇到了一个问题,因为矩阵 board 值未更改并且将第一个值分配给 board即,0 分配给
我一直在尝试编写一个java类来使用某种堆叠和递归来解决n皇后问题,答案存储在网格(二维数组)中,但是我遇到了一个死墙,即n=8时递归的堆栈溢出(最大递归深度达到2298)所以我一直想知道是否有某种方
在这个程序中,我将确定放置皇后是否会对棋盘造成威胁。这将使用位置 1 - 8(可以展开)作为行和列。如果一列中没有棋子,则该行的 y 将为 0(否则为相应的 y)。空板将如下所示:((1 0)(2 0
我编写了一个函数,可以生成 N 皇后问题的所有可能解决方案。它需要用户输入一个整数,即表格的尺寸。即,如果用户输入 4,那么它将列出 4x4 表的所有可能解决方案。当输入 n=4 时,输出如下所示:
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我是一名优秀的程序员,十分优秀!