$_SERVER is an array containing information such as headers, paths, and script locations. The entries in this array are created by the web server. The ...
分类:
其他好文 时间:
2016-10-26 13:20:36
阅读次数:
195
深度优先搜索 # Definition for a binary tree node.# class TreeNode:# def __init__(self, x):# self.val = x# self.left = None# self.right = Noneclass Solution: ...
分类:
编程语言 时间:
2016-10-24 13:41:11
阅读次数:
201
FilebeatConfigurationExample###############Filebeat#############filebeat:#Listofprospectorstofetchdata.prospectors:-#paths指定要监控的日志paths:-/var/log/*.log#指定被监控的文件的编码类型使用plain和utf-8都是可以处理中文日志的。#Somesampleencodings:#plain,utf..
分类:
其他好文 时间:
2016-10-21 16:55:28
阅读次数:
660
法一: sudo vi /etc/paths 来编辑 paths,将环境变量添加到 paths 中。 vim 是一个编辑器,另外还有几个,如:Pico,Emacs。 Hint:输入环境变量时,不用一个一个地输入,只要拖动文件夹到 Terminal 里就可以了。 法二: 1.创建一个文件: sudo ...
分类:
系统相关 时间:
2016-10-19 16:42:54
阅读次数:
215
1:JDK4 新IO要了解的类 Buffer(缓冲),Channer(通道) 2:JDK7 要了解的新IO类 Path:与平台无关的路径。 Paths:包含了返回Path的静态方法。 public static Path get(URI uri):根据给定的URI来确定文件路径。 Files:操作文 ...
分类:
编程语言 时间:
2016-10-05 13:08:32
阅读次数:
183
Farmer John has a number of pastures on his farm. Cow paths connect some pastures with certain other pastures, forming a field. But, at the present ti ...
分类:
其他好文 时间:
2016-10-04 16:30:11
阅读次数:
223
Description 给出一个无向图,求将他构造成双连通图所需加的最少边数. Sol Tarjan求割边+缩点. 求出割边,然后缩点. 将双连通分量缩成一个点,然后重建图,建出来的就是一棵树,因为每一条边都是桥. 然后每次合并这棵树上的叶节点两点距离LCA最远的点,这样就会形成一个环,是双连通的, ...
分类:
其他好文 时间:
2016-10-01 16:50:20
阅读次数:
248
什么是索引: 根据你输入的值去找,这个值就是索引 第一种创建索引的方式: 根据文件来生成索引,如后缀为.txt等的文件 步骤: 第一步:FSDirectory.open(Paths.get(url));根据路径获取存储索引的目录。 FSDirectory:表示对文件系统目录的操作。RAMDirect ...
分类:
Web程序 时间:
2016-09-27 13:28:55
阅读次数:
216
The <base href=”/”/> you define will determine how all other assets you plan on loading treat their relative paths. While you’ll most often use / as y ...
分类:
Web程序 时间:
2016-09-26 15:52:45
阅读次数:
158
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum. For example:Given the below binary tree and sum ...
分类:
其他好文 时间:
2016-09-24 07:07:27
阅读次数:
169