The thief has found himself a new place for his thievery again. There is only one entrance to this area, called the "root." Besides the root, each hou ...
分类:
其他好文 时间:
2017-07-25 18:05:52
阅读次数:
148
今天在看编程思想的时候,突然发现自己的java基础有多渣,习惯了get/set方法后,一直以为类成员变量在类初始化的时候只有调用类成员变量的时候并手动将其输出才可以其打印出来。看了上面这个例子才发现如果类成员变量在类内部初始化后(上例中的window类的构造器初始化后),在new一个House对象出 ...
分类:
其他好文 时间:
2017-07-23 22:41:08
阅读次数:
149
Total Accepted: 1341 Total Submissions: 3744 Difficulty: Medium The thief has found himself a new place for his thievery again. There is only one entr ...
分类:
其他好文 时间:
2017-07-23 21:10:51
阅读次数:
142
题目链接:acm.hdu.edu.cn/showproblem.php?pid=5538 House Building Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) Total S ...
分类:
其他好文 时间:
2017-07-22 16:47:10
阅读次数:
192
SELECT hou.*,uname FROM hos_house AS hou INNER JOIN sys_user AS usr INNER JOIN hos_type AS hty ON hou.uid=usr.uid AND hty.htname='三室一厅' AND hou.hTid=h ...
分类:
数据库 时间:
2017-07-18 22:14:59
阅读次数:
264
题目: Note: This is an extension of House Robber. After robbing those houses on that street, the thief has found himself a new place for his thievery so ...
分类:
其他好文 时间:
2017-07-17 09:54:58
阅读次数:
160
0x00 利用要点 1.申请一块非常大的块. 2.精心构造size覆盖top chunk的chunk header. 3.调用malloc()实现任意地址写 0x01 申请一块非常大的块. 申请一个负数大小的块就可。一般是-1. malloc(-1) 0x02 精心构造size覆盖top chunk ...
分类:
其他好文 时间:
2017-07-15 14:56:07
阅读次数:
117
0x01 fastbin fastbin所包含chunk的大小为16 Bytes, 24 Bytes, 32 Bytes, … , 80 Bytes。当分配一块较小的内存(mem<=64 Bytes)时,会首先检查对应大小的fastbin中是否包含未被使用的chunk,如果存在则直接将其从fastb ...
分类:
其他好文 时间:
2017-07-14 23:05:05
阅读次数:
150
Apple Tree Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 21566 Accepted: 6548 Description There is an apple tree outside of kaka's house. ...
分类:
移动开发 时间:
2017-07-07 21:31:02
阅读次数:
243
1 Introduction 1.1 Dataset scikit-learn提供了一些标准数据集(datasets),比如用于分类学习的iris 和 digits 数据集,还有用于归约的boston house prices 数据集。 其使用方式非常简单如下所示: $ python >>> fro ...
分类:
其他好文 时间:
2017-07-06 22:52:58
阅读次数:
235