查看字符串
使用rabin2 -z /home/burning/010editor/010editor | tee 22.txt 查看字符串。 6698 0x003ba380 0x007ba380 68 69 .rodata ascii The password you entered is for an earlier version of this program. 6699 0x003ba3c8 0x007ba3c8 70 71 .rodata ascii You will…
一、编写脚本
echo 取日期、时间变量值
set yy%date:~0,4%
set mm%date:~5,2%
set dd%date:~8,2%
if /i %time:~0,2% lss 10 set hh0%time:~1,1%
if /i %time:~0,2% geq 10 set hh%time:~0,2%
set mn%time:~3,2%
set ss%time:~6,2%
set date%yy%%mm%%dd%
set time%hh%%mn%%ss…
为什么是B树? 我们推导下,首先看下用哈希表做索引,是否可以满足需求。如果我们用哈希建了索引,那么对于如下这种SQL,通过哈希,可以快速检索出数据:
select * from t_user_info where id1;但是这…