threes - 鼻祖
2048 - 原版
http://gabrielecirulli.github.io/2048/
AI版
http://ov3y.github.io/2048-AI/
Flappy 2048 - 2048和flappy的合体
一个AI程序
http://catx.me/Q-Learning-Flappy-2048/
2147483648 - 大集合
包含各种尺寸、皮肤、版本号(斐波那契等)
http://cyberzhg.github.io/2048/index.html?size=8&mode=normal
2048朝代版
http://www.oprilzeng.com/2048/full/
死神永生版
http://cyberzhg.github.io/2048/skin_santi.html
井口2048
http://marumichannel.github.io/2048/
口袋精灵版
doge2048
中文汉化版本号
http://tiansh.github.io/2048/zhong/
六边形的2048
http://baiqiang.github.io/2048-hexagon/
双人版
http://emils.github.io/2048-multiplayer/
逆向拆2048版
https://www.prism.gatech.edu/~hli362/
5x5棋盘升级到65536版
http://www.csie.ntu.edu.tw/~b01902112/65536/
噩梦版
http://cyberzhg.github.io/2048/
爽歪歪版
http://jennypeng.me/2048/
双人对战版
http://emils.github.io/2048-multiplayer/
2048 fib版
http://mike199515.free3v.com/1597/2.htm
直线版
http://tiansh.github.io/2048/
Flappy Bird和2048的结合体
http://hczhcz.github.io/Flappy-2048/
9007199254740992
http://www.csie.ntu.edu.tw/~b01902112/9007199254740992/
4D版
http://huonw.github.io/2048-4D/
斐波那契版
http://mike199515.free3v.com/1597/2.htm
Philosopher2048
http://learn.tsinghua.edu.cn:8080/2013310744/philosopher2048
中国历史朝代版
http://www.oprilzeng.com/2048/
逆向拆2048版
https://www.prism.gatech.edu/~hli362/
千字文版2048
http://sunzx.github.io/2048/2048.htm
甲乙丙丁版2048
http://tiansh.github.io/2048/zhong/
一步登天版2048
http://jennypeng.me/2048/
双人在线匹配对战版
http://emils.github.io/2048-multiplayer/
一条路版2048
http://tiansh.github.io/2048/
2048-3D
http://joppi.github.io/2048-3D/
3进制2187
GPA版
http://home.ustc.edu.cn/~ferrari/GPA.htm
LHC版
http://milrivel.github.io/LHC/
挖哈哈版
http://vickyoopy.github.io/wahaha/
烈士2048
http://learn.tsinghua.edu.cn:8080/2013310744/2048plus
Jay2048
http://learn.tsinghua.edu.cn:8080/2013310744/jay2048/index.html
方块消除版
http://hczhcz.github.io/2048/2047/
2048喵版
http://hczhcz.github.io/2048/20mu/
死神永生版
http://cyberzhg.github.io/2048/skin_santi.html
兵库北版
http://cyberzhg.github.io/2048/skin_bkb.html
化学元素版
http://cyberzhg.github.io/2048/skin_chemistry.html
爱智慧版
http://learn.tsinghua.edu.cn:8080/2013310744/philosopher2048/
除二版
http://abbyhe.github.io/
生物分类版
http://aenon.github.io/life/
“私人订制”版
http://hczhcz.github.io/my-2048/index.html
建筑生版
http://csy118.github.io/archi.html
剑三版
http://qq1012803704.github.io/
这也是一个2048的集合,能够自己定义皮肤,没有原版的好玩
3D版 - 人民的智慧无穷无尽啊
http://baiqiang.github.io/2048-3d/
【更新】新版Floopy2048
【更新】恒星聚变版
http://newbrict.github.io/Fe26/
攻略:http://www.guokr.com/post/583483/
不要生成24Mg,通过16O 生成 28Si 后面就非常easy了
Deuteron | = | Hydrogen | + | Hydrogen |
3Helium | = | Deuteron | + | Hydrogen |
4Helium | = | 3Helium | + | 3Helium |
8Beryllium | = | 4Helium | + | 4Helium |
12Carbon | = | 8Beryllium | + | 4Helium |
16Oxygen | = | 12Carbon | + | 4Helium |
28Silicon | = | 16Oxygen | + | 16Oxygen |
32Sulfur | = | 28Silicon | + | 4Helium |
36Argon | = | 32Sulfur | + | 4Helium |
40Calcium | = | 36Argon | + | 4Helium |
44Titanium | = | 40Calcium | + | 4Helium |
48Chromium | = | 44Titanium | + | 4Helium |
52Iron | = | 48Chromium | + | 4Helium |
56Nickel | = | 52Iron | + | 4Helium |
github上有非常多变形,及其源代码,有兴趣的能够去搜。
最后转2篇 算法
2048游戏的最佳算法是?来看看AI版作者的回答:http://blog.jobbole.com/63888/
2048 AI 程序算法分析:http://blog.jobbole.com/64597/
假设仅仅是想得到2048,仅仅看第一篇就好了。
值较大的方块应该聚集到某一个角落,防止小的方块被孤立。
比方仅仅移动 左右下 三个方向,使较大的方块聚集在右下角。
再补一篇分析
http://www.zhihu.com/question/23029850
【恶搞改数据】
摘自知乎的攻略,直接每次出现1024……
GameManager.prototype.addRandomTile = function () { if (this.grid.cellsAvailable()) { var value = 1024; var tile = new Tile(this.grid.randomAvailableCell(), value); this.grid.insertTile(tile); } };