Gray Hat Python Python Programming for hackers and reverse engineers
Python灰帽子:黑客与逆向工程师的Python编程之道
差不多两周之前看到了这本书,心情很是激动啊,下定决心一定要好好看看。
好了一个星期的边看边写,发现激动的心情不在了,里面的内容都是为了底层debuger的
的内容,要安装的东西跟版...
分类:
编程语言 时间:
2014-08-27 10:55:17
阅读次数:
225
题目的大意可以理解为:A爱B,B爱C ……给出一系列爱恋的关系,推断有没有同性恋。 思路是把相同性别的归为一个集合,异性的异性为同性。 #include#include#include#includeusing namespace std;const int N=2010;int f[N],...
分类:
其他好文 时间:
2014-08-27 01:37:36
阅读次数:
258
HDU 4972 A simple dynamic programming problem
题意:篮球比赛有1、2、3分球 现给出两队的分差序列(5:3 分差2 3:5分差也是2) 问有多少种可能的比分
思路:
比较简单的想法题 可以类一张表“从分差x到分差y一共有几种情况” 很容易发现只有1->2和2->1的时候会多一种情况 其他均是一种 所以只需要统计这种特殊分差即可 注...
分类:
其他好文 时间:
2014-08-26 17:32:16
阅读次数:
276
Problem Description
Dragon is watching NBA. He loves James and Miami Heat.
Here's an introduction of basketball game:http://en.wikipedia.org/wiki/Basketball. However the game in Dragon's version...
分类:
其他好文 时间:
2014-08-26 15:38:56
阅读次数:
183
一、什么是 AOP。AOP(Aspect Orient Programming),也就是面向切面编程。能够这样理解,面向对象编程(OOP)是从静态角度考虑程序结构,面向切面编程(AOP)是从动态角度考虑程序执行过程。二、AOP 的作用。经常通过 AOP 来处理一些具有横切性质的系统性服务,如事物管理...
分类:
编程语言 时间:
2014-08-26 15:23:16
阅读次数:
237
5 life lessons you will learn the hard way1.It takes consistent time and effort to be an expert in any area.无论想成为哪个领域的专家,都需要持之以恒地付出时间和努力。This is the f...
分类:
其他好文 时间:
2014-08-26 11:29:55
阅读次数:
255
Dynamic programming, or the "put shit in a table" technique, is an optimization for certain types of recurrence problems (specifically, those with ove...
分类:
其他好文 时间:
2014-08-26 11:17:25
阅读次数:
208
When life gets hard and you want to give up,remember thatlife is full of ups and downs, and without the downs,the upswould mean nothing当生活很艰难,你想要放弃的时候...
分类:
其他好文 时间:
2014-08-26 11:07:35
阅读次数:
287
What Is a Servlet?
A servlet is a Java programming language class used to extend the capabilities of servers that host applications accessed by means of a request-response programming model. Although...
分类:
编程语言 时间:
2014-08-26 09:55:46
阅读次数:
218
5 life lessons you will learn the hard way1.It takes consistent time and effort to be an expert in any area.无论想成为哪个领域的专家,都需要持之以恒地付出时间和努力。This is the f...
分类:
其他好文 时间:
2014-08-26 09:44:45
阅读次数:
346