Given a singly linked list L: L0→L1→…→Ln-1→Ln,reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For e...
分类:
其他好文 时间:
2014-09-07 13:27:15
阅读次数:
230
Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For exam...
分类:
其他好文 时间:
2014-09-06 12:20:43
阅读次数:
223
模拟发现,每个元素求和时,元素的系数是二项式系数,于是ans=sum(C(n-1,i)*a[i]/2^(n-1)),但是n太大,直接求会溢出,其实double的范围还是挺大的,所以可以将组合数转化成对数:e^(lnC(n-1, k)*A[k]/(2^n-1) ) ==> e^( ln C(n-1,k...
分类:
其他好文 时间:
2014-09-05 19:54:11
阅读次数:
196
14.04安装docker方法一: $?sudo?apt-get?update
$?sudo?apt-get?install?docker.io
$?sudo?ln?-sf?/usr/bin/docker.io?/usr/local/bin/docker
$?sudo?sed?-i?‘$acomplete?-F?_docker?docker‘...
分类:
其他好文 时间:
2014-09-03 01:33:46
阅读次数:
273
int BSearch(){ int ln(1),rn(n+1); while(ln+1>1; if (Check(mid)) { ln=mid; //mid符合标准,区间变为[mid,rn) } else { rn=mid; /...
分类:
其他好文 时间:
2014-09-02 21:20:15
阅读次数:
212
安装keepalived#./configure--sysconf=/etc--with-kernel-dir=/usr/src/kernels/2.6.32-358.el6.x86_64/&&make&&makeinstall
#ln-s/usr/local/sbin/keepalived/sbin/
#chkconfigkeepalivedon修改网卡配置#vim/etc/sysconfig/network-scripts/ifcfg-lo:0
DEVICE..
分类:
其他好文 时间:
2014-09-02 18:08:35
阅读次数:
210
Given a singly linked list L: L0→L1→…→Ln-1→Ln,
reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…
You must do this in-place without altering the nodes' values.
For example,
Given {1,2,3,4}, reorder it to ...
分类:
其他好文 时间:
2014-08-30 00:06:58
阅读次数:
359
Git代码管理,配置流程mkdir -p/users/shenbin/svnshenbin$ svnadmin create/users/qst/svn/repositorysudo ln -s /Applications/Xcode.app/Contents/Developer/Library/P...
分类:
其他好文 时间:
2014-08-29 09:26:47
阅读次数:
195
Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For exam...
分类:
其他好文 时间:
2014-08-28 17:47:15
阅读次数:
208
可以用素数定理来解决。素数定理:小于n的素数个数记为p(n),则随着n的增长,p(n)/(n/ln(n))=1。#include #include #include #include using namespace std;int main(){ double n; while(scanf("%lf...
分类:
其他好文 时间:
2014-08-27 20:27:48
阅读次数:
231