- 博客(6)
- 资源 (1)
- 收藏
- 关注

原创 cocos2d-x交叉编译到安卓
ccocos2d-x是一个基于MIT协议的开源框架,用于构建游戏、应用程序和其他图形界面交互应用。它的最大特点就是跨屏台性,支持IOS, Android,Windows, WindowsPhone等诸多平台,可以在创建多平台游戏上节约大量人力、物力。下面,介绍cocos2d-x项目交叉编译到Android平台,生成APK安装文件的过程.一、交叉编译cocos2d-x到Android需要Ja
2014-06-05 10:06:53
1381
原创 二分图最大匹配-匈牙利算法
// Problem#: 4313// Submission#: 2903759// The source code is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License// URI: http://creativecommons.org/licenses/by
2014-08-08 11:40:01
392
原创 最大流-Edmonds-Karp算法
#include#includeusing namespace std;const int maxn=205;const int inf=0x7fffffff;int r[maxn][maxn]; //残留网络,初始化为原图bool visit[maxn];int pre[maxn];int m,n;bool bfs(int s,int t) //寻找一条从s到t的增广路,若找
2014-08-08 11:30:41
578
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人