- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
根据我的理解,创建一个可解决的滑动拼图必须遵循以下规则:
A. If the grid width is odd, then the number of inversions in a solvable situation is even.
B. If the grid width is even, and the blank is on an even row counting from the bottom (second->last, fourth-last etc), then the number of inversions in a solvable situation is odd.
C. If the grid width is even, and the blank is on an odd row counting from the bottom (last, third-last, fifth-last etc) then the number of inversions in a solvable situation is even.
我的生成器计算反转的次数并检测空白区域的位置,如果解决方案不遵循这些规则,则应重新掷出拼图。
Jquery/javascript 贴在下面
$(document).ready(function () {
var tds = $("td");
var tileCount = 15;
var gameStart = false;
function countInversions(board) {
var inversions = 0;
$.each(board, function (index, value) {
if ($(value).children("div").attr("id") === "empty") {
return true;
} else {
var tileNum = $(value).children("div").attr("id").replace(/[^0-9.]/g, '') * 1;
$.each(board, function (index2, value2) {
if ($(value2).children("div").attr("id") === "empty" || index2 <= index) {
return true;
} else {
var tileNum2 = $(value2).children("div").attr("id").replace(/[^0-9.]/g, '') * 1;
if (tileNum > tileNum2) {
inversions++;
}
}
});
}
});
console.log(inversions);
return inversions;
}
var scramble = function () {
do {
for (var i = 0; i <= 20; i++) {
var ranNum = Math.floor(Math.random() * tds.length);
var ranNum2 = Math.floor(Math.random() * tds.length);
if (ranNum === ranNum2) {
continue;
}
var td1 = tds[ranNum];
var td2 = tds[ranNum2];
var tile1 = $(td1).children("div");
var tile2 = $(td2).children("div");
$("#" + $(td1).attr("id")).html(tile2);
$("#" + $(td2).attr("id")).html(tile1);
}
} while ((countInversions($(tds)) % 2 !== 0 && $("#empty").parents("tr").attr("id").replace(/[^0-9.]/g, '') * 1 === (1 || 3)) || (countInversions($(tds)) % 2 === 0 && $("#empty").parents("tr").attr("id").replace(/[^0-9.]/g, '') * 1 === (2 || 4)));
gameStart = true;
};
function slide(tile) {
if (gameStart === true) {
var tileNum = $(tile).attr("id").replace(/[^0-9.]/g, '') * 1;
var $tile = $("#tile" + tileNum).clone();
var pos = $(tile).parents("td");
var posNum = $(tile).parents("td").attr("id").replace(/[^0-9.]/g, '') * 1;
var y = posNum - 4;
var x = posNum + 4;
var $empty = $("#empty").clone();
if ($(pos).next().children("div").attr("id") === "empty") {
$(pos).next().children().replaceWith($tile.hide());
$(pos).children().effect("slide", {
direction: "right",
mode: "hide"
}, "fast", function () {
$(pos).children().replaceWith($empty);
});
$(pos).next().children().effect("slide", {
direction: "left",
mode: "show"
}, "fast", function () {
victoryCheck();
});
addSlide(); //slide right
} else if ($(pos).prev().children("div").attr("id") === "empty") {
$(pos).prev().children().replaceWith($tile.hide());
$(pos).children().effect("slide", {
direction: "left",
mode: "hide"
}, "fast", function () {
$(pos).children().replaceWith($empty);
});
$(pos).prev().children().effect("slide", {
direction: "right",
mode: "show"
}, "fast", function () {
victoryCheck();
});
addSlide(); //slide left
} else if ($("#td" + x).children("div").attr("id") === "empty") {
$("#td" + x).children().replaceWith($tile.hide());
$(pos).children().effect("slide", {
direction: "down",
mode: "hide"
}, "fast", function () {
$(pos).children().replaceWith($empty);
});
$("#td" + x).children().effect("slide", {
direction: "up",
mode: "show"
}, "fast", function () {
victoryCheck();
});
addSlide(); //slide up
} else if ($("#td" + y).children("div").attr("id") === "empty") {
$("#td" + y).children().replaceWith($tile.hide());
$(pos).children().effect("slide", {
direction: "up",
mode: "hide"
}, "fast", function () {
$(pos).children().replaceWith($empty);
});
$("#td" + y).children().effect("slide", {
direction: "down",
mode: "show"
}, "fast", function () {
victoryCheck();
});
addSlide(); //slide down
}
}
}
function victoryCheck() {
if (countInversions($("td")) === 0 && $("#empty").parents("td").attr("id") === "td16") {
gameStart = false;
alert("You won. Winner.");
return true;
} else {
return false;
}
}
});
参见 http://www.cs.bham.ac.uk/~mdr/teaching/modules04/java2/TilesSolvability.html更详细地解释方 block 游戏的可溶性。
公共(public) fiddle 示例: http://jsfiddle.net/themonstersarecoding/rzmKA/
最佳答案
我认为你检查拼图是否不可解的逻辑是不正确的,这是因为当你检查带有空 block 的行是奇数还是偶数时,你忽略了“从底部开始计数”的部分。解决此问题的一种方法是更改 <tr>
的“id”值元素,以便它们从底部开始计数。
更改为:
<table id="slidingPuzzle">
<tr id="tr4">
...
</tr>
<tr id="tr3">
...
</tr>
<tr id="tr2">
...
</tr>
<tr id="tr1">
...
</tr>
</table>
关于javascript - 查询 : Sliding Puzzle Generator Giving Unsolvable Puzzles,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20774939/
编译器知道AbstractDemo是一个抽象类,抽象类不能被实例化。 但是当我调用 newInstance() 方法时,为什么它没有给出编译时错误? import java.lang.reflect.
假设我有如下数据类型: data Cell = Cell (Maybe Player) data Board = Board [[Cell]] 现在我想生成一个这样的递归函数: genBoard
当谈到使用 OpenMP 和 TBB 进行共享内存编程时,我是一个初学者。 我正在实现 QuickHull 算法 ( http://en.wikipedia.org/wiki/QuickHull )
我想创建一个随机列表与列表中元素的不同组合。出现在最终列表中的每个元素的计数应该相同。。例如。在这里,我期望所有元素的计数都是10,因为我给了相同的权重。但这并不总是一样的。如何修改代码以使所有元素的
我想创建一个随机列表与列表中元素的不同组合。出现在最终列表中的每个元素的计数应该相同。。例如。在这里,我期望所有元素的计数都是10,因为我给了相同的权重。但这并不总是一样的。如何修改代码以使所有元素的
以下将显示在 Firebug 或 jsconsole.com 中或在其他 Javascript 交互式控制台中: >>> foo = { a : 1, b : 2.2 } Object { a=1,
在 Azure DevOps 管道中的一项任务中,我尝试停止 IIS 服务器。这可以通过在命令提示符中调用命令net stop WAS来实现。手动执行此操作,它会要求确认 手动方式,我只需按 Y EN
在 Azure DevOps 管道中的一项任务中,我尝试停止 IIS 服务器。这可以通过在命令提示符中调用命令net stop WAS来实现。手动执行此操作,它会要求确认 手动方式,我只需按 Y EN
在 R 编码中出现以下错误。 在我的 Brand_X.xlsx 数据集中,我尝试使用 KNN 插补法计算的 NA 值很少,但我得到的结果低于错误。这里有什么问题吗?谢谢! > library(read
在 Android Studio 中,我希望我的每个应用变体都有自己的图标。 我尝试了各种方法,包括此处建议的方法 How to provide different Android app icons
JSFiddle 示例代码:http://jsfiddle.net/SUMPq/8/ 我在容器上有一些文本,代码位于 HTML 的顶部,靠近正文: Heading TAG SOME TEXTSOM
所以我正在实现这个简单的剃须刀支付集成。但它给我一个“没有找到合适的付款方式”的错误。我之前尝试过选择付款选项表,但也没有用。 val razorpay = RazorpayClient("my
Closed. This question needs to be more focused。它当前不接受答案。 想要改善这个问题吗?更新问题,使它仅关注editing this post的一个问题。
我在玩 elm-css . 大多数事情都按我的预期工作。 但是我无法为 Css.opacity 提供正确的值功能。 这是我尝试过的: Css.opacity 0.5 这给出了错误: Function
请参阅以下代码: UIImage *image; NSString *str = [[[Data getInstance]arrPic]objectAtIndex:rowIndex]; NSLog(s
这个问题已经有答案了: "Notice: Undefined variable", "Notice: Undefined index", "Warning: Undefined array key",
我正在测试一个用于修改文件的工具,在此过程中一个相当重要的功能是告诉文件大小,尤其是当文件仍然打开时。 $file = tempnam('/tmp', 'test_'); file_put_conte
我是Java/Maven新手,我正在尝试构建一个maven Spring Boot项目,它很早就可以工作并且也成功创建了jar包。但它突然停止工作并开始出现 Maven 编译错误。 我知道它与 pom
我正在尝试让我的 pom.xml 在我的 JAXB 对象上生成 hashCode() 和 equals method()。 4.0.0 0.0.1-SNAPSHOT jar
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 8 年前。 Improv
我是一名优秀的程序员,十分优秀!