#使用数据:UFO数据#读入数据,该文件以制表符分隔,因此使用read.delim,参数sep设置分隔符为\t#所有的read函数都把string读成factor类型,这个类型用于表示分类变量,因此将stringsAsFactors设置为False#header=F表示文件中并没有表头#na.str...
分类:
编程语言 时间:
2015-10-21 20:45:27
阅读次数:
262
Linux Hackers/Suspicious Account Detection
分类:
系统相关 时间:
2015-09-24 15:59:12
阅读次数:
236
// uva 11825 Hacker's Crackdown
//
// 题目意思看了很久才看懂,有n台计算机,有n种服务,每台计算机上运行所有
// 的服务,并且其中有的计算机与某些计算机相互邻接,对于每台计算机,
// 你可以选择一项服务,停止这项服务,则与它邻接的计算机的该服务也停止了
// 你的目的是让经量多的服务完全瘫痪
//
// 换而言之,这个问题就是在n个集合中(p[1].......
分类:
其他好文 时间:
2015-05-26 12:40:37
阅读次数:
158
#include #include #include #include //mac address// Return the local MAC addy// Courtesy of FreeBSD hackers email list// Accidentally munged during pr...
分类:
移动开发 时间:
2015-05-18 16:35:58
阅读次数:
202
本文为《Probabilistic Programming and Bayesian Methods for Hackers》读书笔记,网页链接为https://github.com/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers
由于csdn无法编辑公式,以及上传图片麻烦,所以直接上传w...
分类:
其他好文 时间:
2015-04-25 22:49:28
阅读次数:
363
参照大白书上面的解法,总共三个步骤,前两个步骤都较好理解。P[i]是用位表示的当选中i时,总共有0~n-1总共有多少个数字被覆盖。cover[S]则表示,当子集为S时,0~n-1中能够被覆盖的位数。若cover[S]的每位都为1,则说明子集S能对全集进行覆盖,当然可能子集S的子集就能做到这一点了。
关键的步骤是对状态转移方程的理解。书中的状态转移方程是f(S)=max{f(S0)|S0是S的子集...
分类:
其他好文 时间:
2015-04-06 20:19:09
阅读次数:
166
最近看JDK中的concurrentHashMap类的源码,其中有那么一个函数:/** * Returns a power of two table size for the given desired capacity. * See Hackers Delight, sec 3.2...
分类:
其他好文 时间:
2015-03-30 01:09:40
阅读次数:
241
抽象为数学模型就是, 取尽可能多的互不相交的子集 , 使得每一个子集都能覆盖全集
#include
#include
#include
using namespace std;
int n;
int P[1000],cover[1000],f[1000];
int main(){
scanf("%d", &n);
for (int i = 0; i < n;i+...
分类:
其他好文 时间:
2015-03-03 23:46:13
阅读次数:
522
Problem HHackers’ CrackdownInput:Standard InputOutput:Standard OutputMiracle Corporations has a number of system services running in a distributed com...
分类:
其他好文 时间:
2014-12-23 06:36:06
阅读次数:
146
#include// Per msqr#include#include#include#pragma mark MAC// Return the local MAC addy// Courtesy of FreeBSD hackers email list// Accidentally munged...
分类:
移动开发 时间:
2014-12-19 15:26:47
阅读次数:
165