Understanding the node.js event loopThe first basic thesis of node.js is that I/O is expensive:So the largest waste with current programming technolog...
分类:
其他好文 时间:
2014-08-10 21:21:30
阅读次数:
469
一。replace()
替换算法将指定元素值替换为新值,使用原型如下,将迭代器[first,last)中值为old_value的元素全部替换为new_value值。
函数原型:
template class ForwardIterator, class T > void replace ( ForwardIterator first, ForwardIterato...
分类:
其他好文 时间:
2014-08-10 18:43:20
阅读次数:
272
http://www.geeksforgeeks.org/amazon-interview-set-105-campus/First PI:1. A brief discussion on my projects that I have done .2. One thing that I am mo...
分类:
其他好文 时间:
2014-08-10 15:35:10
阅读次数:
302
题目链接:点击打开链接
题意:
给定n个字符串,k局游戏
对于每局游戏,2个玩家轮流给一个空串添加一个小写字母使得加完后的字符串不是n个字符串的前缀。
输家下一轮先手
问是先手必胜还是后手必胜
思路:
对于第一局游戏,若先手能到达必败态和必胜态,则先手会一直输到倒数第二局然后最后一局必胜
所以此时是first
若先手是必胜态或者是必败态,则是轮流赢,跟k的奇偶有关
#inclu...
分类:
其他好文 时间:
2014-08-10 13:07:00
阅读次数:
201
First Missing PositiveGiven an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]return3,and[3,4,-1,1]return2.Yo...
分类:
其他好文 时间:
2014-08-09 23:13:29
阅读次数:
253
public member function
std::vector::front
reference front();
const_reference front() const;
Access first element
访问第一个元素
Returns a reference to the first element in the vector....
分类:
其他好文 时间:
2014-08-09 18:45:48
阅读次数:
243
1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 #define F first 7 #define S second 8 #define MP(a,b) make_pair( make_pair(a,...
分类:
其他好文 时间:
2014-08-09 18:32:18
阅读次数:
277
第一题是整数的方阵,求其中的子方阵,和最大。返回最大和以及子方阵宽度。因为做了topcoder的题,所以比较顺手,O(n^3)的复杂度。pair maxiSum(vector > &a) { //first is n second is sum int N = a.size(); in...
分类:
其他好文 时间:
2014-08-09 00:00:26
阅读次数:
352
操作系统:centos6.4X86_64apache版本:httpd-2.2.6openssl版本:openssl-1.0.1e源码编译apache时报如下错误:ssl_engine_init.c:Infunction‘ssl_init_ctx_protocol‘:
ssl_engine_init.c:390:warning:assignmentdiscardsqualifiersfrompointertargettype
ssl_engine_init.c:396..
分类:
其他好文 时间:
2014-08-08 18:25:36
阅读次数:
841
1 /* 2 The first line of each test case contains 1 8 #include 9 #include10 #include11 #include12 using namespace std;13 14 double x[800], y[800]...
分类:
Web程序 时间:
2014-08-08 17:22:36
阅读次数:
292