开开心心写
开开心心写
全部文章
分类
ACM - dp(1)
ACM - 二分(8)
ACM - 数学(1)
ACM - 矩阵(1)
ACM-线段树(1)
ACM题解(245)
Android(3)
angr(3)
Crypto(5)
CTF之旅(84)
Linux(8)
pwn(1)
python(6)
reverse(3)
ubuntu(1)
Windows(4)
大作业(1)
恶意代码分析实战(43)
数学(4)
数据结构专题班(15)
未归档(4)
归档
标签
去牛客网
登录
/
注册
开开心心写的博客
全部文章
(共442篇)
awk 命令
起步上台:基础命令 awk '{print $1}' break.txt awk '{print $2, $3}' break.txt awk '{printf "%08s", $1}' break.txt 脱掉外套:过滤记录 awk ' $3==0 && $6...
2020-10-05
0
584
vim 打怪
简明 vim 练级攻略(1) 存活(2) 感觉良好(3) 觉得更好、更快、更强(4) vim 超能力 第一级别:在 Normal 模式下生存:(1) i: insert(2) a: add(3) ESC: 回到 Normal 模式(4) x: 删除当前光标所在的一个字符(5) dd: 删除当前行,并...
2020-10-05
0
564
linux shell 小技巧
shell !$: 一个特殊的环境变量,代表了上一个命令的最后一个字符串 mkdir mydir mv mydir yourdir cd yourdir === 等价于 mkdir mydir mv !$ yourdir cd !$cd -回到上一次的目录当前目录为 /home/a用 cd ../...
2020-10-05
0
481
sed 命令
(1) 用 s 命令替换 sed "s/my/Hao Chen's/g" a.txt sed "s/my/Hao Chen's/g" a.txt > aa.txt 把处理过后的内容重定向输出到新文件aa.txt sed -...
2020-10-05
0
537
python 中 w 和 wb 的区别
import struct def ch(num): if (num >= '0' and num <= '9'): return ord(num) - ord('0') elif (num >= 'A' and num <= 'F'): ...
python
2020-07-26
0
839
python - scapy - pcap
# -*- coding: utf-8 -*- """ Spyder Editor This is a temporary script file. """ def func(): pass from scapy.all...
python
CTF
scapy
2020-06-27
0
574
HDU5083-BC15-B
学习大神们开始写题解。也有助于自己的思路整理 废话:今天第一状态算是不错,第一题没有像上次那样由于物理不好WA10+发还不对。。。。但是这道难度不大的模拟自己还是注意不好细节。。。。比赛时间没做出来,关键是对Error的处理。 思路:简单粗暴的模拟,注意关键是对Error的处理。 程序如下:细...
2020-05-04
0
491
HDOJ 1008模拟水题
/* 水题:模拟 一开始把意思读错了!! The numbers denote at which floors the elevator will stop, in specified order. 少读了in specified order!导致自己用排序求其最值! 题意: n个...
2020-05-04
0
457
广搜模版
#include <iostream> #include <algorithm> #include <stdio.h> #include <math.h> #include <vector> #include <string> ...
2020-05-04
0
394
HDOJ2094拓扑排序
<p>传送门:<a target=_blank href="http://acm.hdu.edu.cn/showproblem.php?pid=2094" target="_blank">http://acm.hdu.edu.cn/sh...
2020-05-04
0
493
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页