转自:http://www.sjsjw.com/kf_mobile/article/3_24710_14072.asp这里补充一个更简单的方法(和下面的方法一样的效果):有时在打开模拟器的时候会出现The connection to adb is down, and a severe error h...
分类:
移动开发 时间:
2015-01-10 16:23:41
阅读次数:
131
LCT 喜闻乐见的Link-Cut-Tree…… srO zyf http://www.cnblogs.com/zyfzyf/p/4149109.html 目测我是第222个?………………不要在意这些细节…… 和以前写的splay还是有些区别呢…… 比如splay中Push_down...
分类:
其他好文 时间:
2015-01-10 01:01:32
阅读次数:
244
https://oj.leetcode.com/problems/binary-tree-upside-down/http://blog.csdn.net/xudli/article/details/42362441/**
*Definitionforbinarytree
*publicclassTreeNode{
*intval;
*TreeNodeleft;
*TreeNoderight;
*TreeNode(intx){val=x;}
*}
*/
publicclassSolution{
publicT..
分类:
其他好文 时间:
2015-01-09 19:29:33
阅读次数:
169
SublimeText多列选择(Column Selection)默认的快捷键是Ctrl+shift+up&down,但是与Yosemite的“MissionControl”、“应用程序窗口”的两个快捷键冲突了,最简单的办法就是在“偏好设置”里面关掉这两个快捷键。
分类:
其他好文 时间:
2015-01-09 10:32:04
阅读次数:
244
WHAT ARE MY STRENGTHS?Whenever you make a key decision or take a key action,write down what expect will happen.9 or 12 months later,compare the actual...
分类:
其他好文 时间:
2015-01-09 00:03:21
阅读次数:
403
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:
其他好文 时间:
2015-01-08 20:06:49
阅读次数:
131
1 ssh-host-config ?错误: There are still ssh processes running. Please shut them down first. ?解决: ps -ef | grep -v grep | grep ssh??????????kill -9 xxx ? 2?ssh localhost ?错误:c...
分类:
其他好文 时间:
2015-01-08 18:22:11
阅读次数:
191
一:windows下编译Memcached (1)下载地址dll:http://down.51cto.com/data/442606 (2)在php下输出 echo phpinfo();查看php的版本,以及是否 ts/nts vc6/vc9 (3)观察phpinfo中 exte...
import random
#warning: x and y confusing
sx = 10
sy = 10
dfs = [[0 for col in range(sx)] for row in range(sy)]
maze = [[' ' for col in range(2*sx+1)] for row in range(2*sy+1)]
#1:up 2:down 3:left 4...
分类:
编程语言 时间:
2015-01-08 15:24:22
阅读次数:
158
最近在进行一次性能测试中遇到一个问题,并发较大的时候会出现LR出现Error -27791: Server xx has shut down the connection prematurely的ERROR,然后还有同数量的失败交易,系统架构是nginx---tomcat,遂进行以下排查: ...
分类:
其他好文 时间:
2015-01-07 20:30:28
阅读次数:
1639