threes - 鼻祖

手机版:http://asherv.com/threes/

js版:http://threesjs.com/

2048 - 原版

http://gabrielecirulli.github.io/2048/

AI版

http://ov3y.github.io/2048-AI/

Flappy 2048 - 2048和flappy的合体

http://itis.ga/Flappy-2048/

一个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/

口袋精灵版

http://poke2048.com/

doge2048

http://doge2048.com/

中文汉化版本号 

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 

http://mike199515.free3v.com/

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的集合,能够自己定义皮肤,没有原版的好玩

http://2048.malash.net/

3D版 - 人民的智慧无穷无尽啊

http://baiqiang.github.io/2048-3d/

【更新】新版Floopy2048

http://flappy2048.com/

【更新】恒星聚变版

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);
}
};

最新文章

  1. caffe调试小结2
  2. IndexedDB(本地存储)
  3. iOS开发之功能模块--根据需求开发横向的子弹盒View
  4. Linux 下进程的内存空间分配
  5. web项目启动报错Unknown character set: 'utf8mb4' in mysql
  6. 推导大O阶方法
  7. java并发:线程同步机制之Lock
  8. GUI图形界面
  9. ckeditor
  10. cocos2d-x实战 C++卷 学习笔记--第7章 动作、特效(一)
  11. Windows下查询进程、端口
  12. 赵雅智:js知识点汇总
  13. SQL Server数据库修改字段属性
  14. NDK开发之访问域
  15. Ubuntu18.04安装搜狗拼音输入法皮肤透明解决方法
  16. Java类加载双亲委托模式优点
  17. Certbot让网站拥有免费https证书
  18. java基础语法2.
  19. Mvc_后端通用验证
  20. mysql如何修改root用户的密码

热门文章

  1. tar.gz文件命名和压缩解压方法
  2. 类型自动转换引起的误解——QString可以赋值数字1,也能直接与0比较,真是昏倒!
  3. 玩转Windows服务系列——命令行管理Windows服务
  4. iOS_10_tableView的简单使用_红楼十二钗
  5. Oracle Enterprise Manager Cloud Control 12c R4 安装配置
  6. GNU libmicrohttpd 0.9.29 发布 - 开源中国社区
  7. HDU2602 Bone Collector 【01背包】
  8. uva315(求割点数目)
  9. Hadoop-2.2.0中国文献—— MapReduce 下一代 -- 公平调度
  10. c语言输入输出函数