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
阅读次数:
297
Given a binary tree, flatten it to a linked list in-place.For example,Given 1 / \ 2 5 / \ \ 3 4 6The flattened t...
分类:
其他好文 时间:
2014-08-16 22:23:31
阅读次数:
269
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
阅读次数:
220
题目链接:http://poj.org/problem?id=1274题目意思:有 n 头牛,m个stall,每头牛有它钟爱的一些stall,也就是几头牛有可能会钟爱同一个stall,问牛与 stall 最大匹配数是多少。 二分图匹配,匈牙利算法入门题,留个纪念吧。 书上看到的一些比较有用的知识.....
分类:
其他好文 时间:
2014-08-16 22:23:01
阅读次数:
250
一、起源XMPP是基于XML的协议,用于即时消息(IM)以及在线现场探测。最初,XMPP作为一个框架开发,目标是支持企业环境内的即时消息传递和联机状态应用程序。XMPP前身是Jabber(1998年),是一个开源组织定义的网络即时通信协议。XMPP是一个分散型通信网络,这意味着,只要网络基础设施允许...
分类:
其他好文 时间:
2014-08-16 22:22:51
阅读次数:
195
链接: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
阅读次数:
280
三分之一的通过率的字符串 题意为,输入一个S串,有一个空串T。对S串有两种操作,一是取出S串的头放入T串的尾,二是取出S串的尾放入T串的尾。要求是要使得T串的字典序最小。 从题意来看是一个很明显的贪心思路。那么想到这一步其实比较接近答案了,但是需要注意的一点是当S串的头和尾相同的时候,那么这...
分类:
其他好文 时间:
2014-08-16 22:22:11
阅读次数:
255
67.俩个闲玩娱乐(运算)。1.扑克牌的顺子从扑克牌中随机抽 5 张牌,判断是不是一个顺子,即这 5 张牌是不是连续的。2-10 为数字本身,A 为 1,J 为 11,Q 为 12,K 为 13,而大小王可以看成任意数字。思路: 用min、max记录输入的牌对应的数字大小,不考虑王,用wnum记录王...
分类:
其他好文 时间:
2014-08-16 22:22:01
阅读次数:
233
在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
阅读次数:
277
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.Fo...
分类:
其他好文 时间:
2014-08-16 22:21:41
阅读次数:
235
最近一段时间,想在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
阅读次数:
343
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
阅读次数:
345
不理解Meta Property=og标签是什么意思,以及对SEO的影响,看一下下面的介绍。Meta Property=og标签是什么呢?og是一种新的HTTP头部标记,即Open Graph Protocol:The Open Graph Protocol enables any web page...
分类:
其他好文 时间:
2014-08-16 22:20:41
阅读次数:
236
上一章我们分析了Scene与Layer相关类的源代码,对Cocos2d-x的场景有了初步了解,这章我们来分析一下场景变换TransitionScene源代码。直接看TransitionScene的定义class CC_DLL TransitionScene : public Scene{public...
分类:
其他好文 时间:
2014-08-16 22:20:31
阅读次数:
312
3.1略3.2string str;//读行 while(getline(cin,str)) cout>str) cout>a>>b; if(a==b) coutb) cout>a>>b; if(a.size()==b.siz...
分类:
编程语言 时间:
2014-08-16 22:20:21
阅读次数:
375
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...
#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
阅读次数:
351