码迷,mamicode.com
首页 >  
搜索关键字:check point r77.30    ( 16204个结果
[LeetCode]Same Tree
Given two binary trees, write a function to check if they are equal or not. Two binary trees are considered equal if they are structurally identical and the nodes have the same value. /** ...
分类:其他好文   时间:2014-08-03 12:54:55    阅读次数:201
Thesis - Preparation
1. Choose a topic.2. Decide what to develop.3. Check feasibility of your idea, including the tools, time, etc.4. If feasible, write a project proposal...
分类:其他好文   时间:2014-08-02 20:38:53    阅读次数:197
Linux Rootkit Sample && Rootkit Defenser Analysis
This paper attempts to analyze the characteristics from the attacker's point of view about the currentopen source rootkit key technology, hope can fin...
分类:系统相关   时间:2014-08-02 18:18:34    阅读次数:786
POJ 1035 Spell Check 字符串处理
被这样的题目忽悠了,一开始以为使用Trie会大大加速程序的,没想到,一不小心居然使用Trie会超时。 最后反复试验,加点优化,终于使用Trie是可以过的,不过时间大概难高于1500ms,一不小心就会超时。 看来这是一道专门卡Trie的题目,只好放弃不使用Trie了。 也得出点经验,如果字符串很多,如本题有1万个字符串的,那么还是不要使用Trie吧,否则遍历一次这样的Trie是十分耗时的,2s...
分类:其他好文   时间:2014-08-02 15:30:03    阅读次数:245
poj 1035
Spell checker Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 19044   Accepted: 6959 Description You, as a member of a development team for a new spell check...
分类:其他好文   时间:2014-08-02 13:00:53    阅读次数:262
poj3525Most Distant Point from the Sea(半平面交)
链接求凸多边形内一点距离边最远。做法:二分+半平面交判定。二分距离,每次让每条边向内推进d,用半平面交判定一下是否有核。本想自己写一个向内推进。。仔细一看发现自己的平面交模板上自带。。 1 #include 2 #include 3 #include 4 #include 5 #incl...
分类:其他好文   时间:2014-08-02 12:34:33    阅读次数:305
LeetCode "Permutations"
Lexicographicallyalgorithms:1. Iterate array from back to front, and find the first decreasing point: 1,2,4,3 -- 42. Iterate array from back to front,...
分类:其他好文   时间:2014-08-02 05:11:02    阅读次数:199
ZOJ 1450
最小圆覆盖#include #include #include #include using namespace std;const double eps=0.00000001;struct point { double x,y;}p[110];struct circle{ point cent; ...
分类:其他好文   时间:2014-08-02 01:30:52    阅读次数:230
Nagios常见问题记录(2)
1、时间同步安装Nagios后,有3个检查时间同步的插件,根据不同的检测目标,使用不同的插件:check_ntp:已过时,最好不要再使用;check_ntp_peer:用于检查ntp服务器的健康状况。check_ntp_time:用于检查指定的服务器与ntp服务器之间的时间差。2、如何监控LVS的状态如果要监测..
分类:移动开发   时间:2014-08-01 20:08:03    阅读次数:473
Java程序打包成jar包
方法一:通过jar命令jar命令的用法:下面是jar命令的帮助说明:用法:jar {ctxui}[vfm0Me] [jar-file] [manifest-file] [entry-point] [-C dir] files ...选项包括: -c 创建新的归档文件 -t 列出归档目录 -x 解压缩...
分类:编程语言   时间:2014-08-01 19:06:22    阅读次数:194
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!