分类:
其他 时间:
2014-08-16 22:25:41
收藏:
0 评论:
0 赞:
0 阅读:
401
poj3528参照#include #include #include #include using namespace std;#define inf 0x7fffffff#define max(a,b) (a>b?a:b)#define min(a,b) (a eps) ...
分类:
其他 时间:
2014-08-16 22:25:21
收藏:
0 评论:
0 赞:
0 阅读:
345
链接这题还真没看出来长得像三分。。三分角度,旋转点。最初找到所有点中最左边、右边、上边、下边的点,正方形边长为上下距离和左右距离的最大值,如图样例中的四个点(蓝色的),初始正方形为红色的正方形。当4个点旋转了一定角度之后,根据上下及左右的最大距离可以画出蓝色的正方形,而且现在的正方形更小,可以看出角...
分类:
其他 时间:
2014-08-16 22:25:11
收藏:
0 评论:
0 赞:
0 阅读:
321
Artificial Intelligence - Wiley - Data Mining - Concepts Models Methods and Algorithms - 2003.chm8.4 MBIEEE - Finding Patterns in Three Dimensional Gr...
分类:
其他 时间:
2014-08-16 22:24:51
收藏:
0 评论:
0 赞:
0 阅读:
523
这段时间一直有在看Express框架的API,最近刚看到Router,以下是我认为需要注意的地方:Router模块中有一个param方法,刚开始看得有点模糊,官网大概是这么描述的:Map logic to route parameters.大概意思就是路由参数的映射逻辑这个可能一时半会也不明白其作用...
分类:
Web开发 时间:
2014-08-16 22:24:41
收藏:
0 评论:
0 赞:
0 阅读:
478
git add [commit file list]将已经修改的代码添加索引git commit -m [commit message]将已经索引的代码修改提交至本地的库git push origin [branch_name]将分支 branch_name 的代码推送至服务器git pull or...
分类:
其他 时间:
2014-08-16 22:24:31
收藏:
0 评论:
0 赞:
0 阅读:
398
#include #include using namespace std;#define MAX 100 //字符串最大长度typedef struct Node //二叉树结点{ char data; Node *lchild,*rchild;} *B...
分类:
其他 时间:
2014-08-16 22:23:51
收藏:
0 评论:
0 赞:
0 阅读:
507
CommandActionNotesvim file +54open file and go to line 54any : command can be run using + on command linevim -O file1 file2open file1 and file2 side b...
分类:
其他 时间:
2014-08-16 22:23:41
收藏:
0 评论:
0 赞:
0 阅读:
387
1、题目链接地址 http://poj.org/problem?id=3624 2、源代码#includeusing namespace std;#define MAXN 3403 //物品的最大数量#define MAXM 12881 //重量的上限 int max(int x, int ...
分类:
其他 时间:
2014-08-16 22:23:11
收藏:
0 评论:
0 赞:
0 阅读:
336
题目链接:http://poj.org/problem?id=1274题目意思:有 n 头牛,m个stall,每头牛有它钟爱的一些stall,也就是几头牛有可能会钟爱同一个stall,问牛与 stall 最大匹配数是多少。 二分图匹配,匈牙利算法入门题,留个纪念吧。 书上看到的一些比较有用的知识.....
分类:
其他 时间:
2014-08-16 22:23:01
收藏:
0 评论:
0 赞:
0 阅读:
380
一、起源XMPP是基于XML的协议,用于即时消息(IM)以及在线现场探测。最初,XMPP作为一个框架开发,目标是支持企业环境内的即时消息传递和联机状态应用程序。XMPP前身是Jabber(1998年),是一个开源组织定义的网络即时通信协议。XMPP是一个分散型通信网络,这意味着,只要网络基础设施允许...
分类:
其他 时间:
2014-08-16 22:22:51
收藏:
0 评论:
0 赞:
0 阅读:
347
链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=&problem=1006Problem AUseless Tile PackersInput:sta...
分类:
其他 时间:
2014-08-16 22:22:31
收藏:
0 评论:
0 赞:
0 阅读:
443
三分之一的通过率的字符串 题意为,输入一个S串,有一个空串T。对S串有两种操作,一是取出S串的头放入T串的尾,二是取出S串的尾放入T串的尾。要求是要使得T串的字典序最小。 从题意来看是一个很明显的贪心思路。那么想到这一步其实比较接近答案了,但是需要注意的一点是当S串的头和尾相同的时候,那么这...
分类:
其他 时间:
2014-08-16 22:22:11
收藏:
0 评论:
0 赞:
0 阅读:
407
67.俩个闲玩娱乐(运算)。1.扑克牌的顺子从扑克牌中随机抽 5 张牌,判断是不是一个顺子,即这 5 张牌是不是连续的。2-10 为数字本身,A 为 1,J 为 11,Q 为 12,K 为 13,而大小王可以看成任意数字。思路: 用min、max记录输入的牌对应的数字大小,不考虑王,用wnum记录王...
分类:
其他 时间:
2014-08-16 22:22:01
收藏:
0 评论:
0 赞:
0 阅读:
395
在Memcached官方的GitHub上,可以找到这么一个文档——HowTo.txtHowto=====Basic Example:==============Lets say you have 3 servers. Server 1 and server 2 have 3GB of spacea....
分类:
其他 时间:
2014-08-16 22:21:51
收藏:
0 评论:
0 赞:
0 阅读:
379
最近一段时间,想在EF中使用MySQL,于是就进行了测试。我的环境是VS2013+EF6+MySQL5.7.4首先要下载MySQL For VisualStudio 1.1.4、ConnectorNet 6.8.3这两个东西。然后在NuGet程序包中添加EntityFramework(不能是EF5)...
分类:
数据库技术 时间:
2014-08-16 22:21:31
收藏:
0 评论:
0 赞:
0 阅读:
498
A computer-implemented method and apparatus in a computer system of processing data generated by a first application program in a second application p...
分类:
移动平台 时间:
2014-08-16 22:21:11
收藏:
0 评论:
0 赞:
0 阅读:
643
上一章我们分析了Scene与Layer相关类的源代码,对Cocos2d-x的场景有了初步了解,这章我们来分析一下场景变换TransitionScene源代码。直接看TransitionScene的定义class CC_DLL TransitionScene : public Scene{public...
分类:
其他 时间:
2014-08-16 22:20:31
收藏:
0 评论:
0 赞:
0 阅读:
396
Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).For example, S = "ADOBECOD...
分类:
Windows开发 时间:
2014-08-16 22:20:11
收藏:
0 评论:
0 赞:
0 阅读:
388
#include "cuda_runtime.h"#include "device_launch_parameters.h"#include #include #include #include "cublas_v2.h"#define BLOCK_SIZE 16cudaError_t multiC...
分类:
其他 时间:
2014-08-16 22:20:01
收藏:
0 评论:
0 赞:
0 阅读:
711