实现 1. 可并堆 1.1. 可并堆的树高并不是 O(log n) 的. 例如我来一个极端数据, 从前往后逐个插入: n n-1 n-2 ... 5 4 3 2 1 1.2. c[N][2], par[N] 的维护技巧 1.2.1. 注意两者是绑在一起的, 维护一个的时候要同时维护另一个. 1.2. ...
分类:
其他好文 时间:
2017-08-29 20:32:41
阅读次数:
203
先看效果图: 上图是我们要实现的效果,那么现在我们开始着手去做,主要分为以下几步: 一丶我们需要根据效果图去思考该如何动手,从上图分析看,我们可以用一个相对布局RelativeLayout来完成group(一级item)的布局设计,至于child(二级item)的布局,我们可以用一个TextView ...
分类:
其他好文 时间:
2017-08-29 15:06:35
阅读次数:
279
Scrollview 嵌套 RecyclerView 及在Android 5.1版本滑动时 惯性消失问题 Scrollview 嵌套 RecyclerView 及在Android 5.1版本滑动时 惯性消失问题 标签: scrollviewandroid滑动嵌套 2015-07-16 17:24 1 ...
分类:
移动开发 时间:
2017-08-29 15:05:49
阅读次数:
331
题意: 1 输入a:询问是不是有连续长度为a的空房间,有的话住进最左边 2 输入a b:将[a,a+b-1]的房间清空 思路:记录区间中最长的空房间 线段树操作: update:区间替换 query:询问满足条件的最左端点 ...
分类:
其他好文 时间:
2017-08-29 12:55:47
阅读次数:
151
ftp服务器 FTP 是File Transfer Protocol(文件传输协议)的英文简称,而中文简称为“文传协议”。 用于Internet上的控制文件的双向传输。 同时,它也是一个应用程序(Application)。基于不同的操作系统有不同的FTP应用程序,而所有这些应用程序都遵守同一种协议以 ...
分类:
系统相关 时间:
2017-08-29 12:50:53
阅读次数:
162
Problem Description Xiao Ming and Xiao Bao are playing a simple Numbers game. In a round Xiao Ming can choose to write down a number, or ask Xiao Bao ...
分类:
其他好文 时间:
2017-08-29 12:48:29
阅读次数:
133
机器人已被编程为按照其指令中的路径进行操作。机器人要移动的下一个方向的指令放在网格中。可能的指令是 N north (up the page) S south (down the page) E east (to the right on the page) W west (to the left ...
分类:
其他好文 时间:
2017-08-29 12:36:18
阅读次数:
204
shutdown -s -t 120 120秒后关机,还可以设置更高的时间,1小时60*60即可 3600shutdown -s -t 3600 想要定点关机,就如12点关机,命令如下: at 12:00 shutdown -s 想取消自动关机,在运行中输入: shutdown -a ...
分类:
其他好文 时间:
2017-08-28 19:57:58
阅读次数:
131
X-WAF X-WAF是一款适用中、小企业的云WAF系统,让中、小企业也可以非常方便地拥有自己的免费云WAF。 官网:https://waf.xsec.io/ 源码:https://github.com/xsec-lab 安装部署 系统版本:Centos6.5 x86_64 1、openresty的 ...
分类:
其他好文 时间:
2017-08-27 15:21:52
阅读次数:
399
题目描述 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 farth ...
分类:
其他好文 时间:
2017-08-27 15:19:46
阅读次数:
171