c-二叉树

#include <stdlib.h> #include <stdio.h> /* 树的节点 */ typedef struct tree_node { /* 左孩子指针 */ struct tree_node *left; /* 右孩子指针 */ struct tree_node *right; /* 关键字 */ char key; }tree_node;……

c-哈希表

#include <stdlib.h> #include <string.h> #include <stdio.h> typedef struct hash_node { void *key; void *val; struct hash_node *next; } hash_node; typedef struct hash_table { hash_node **table; int size; // hashmask https://its301.com/article/qing_gee/120260024 int sizemask; } hash_table; unsigned int hash_33(char *str) { unsigned int hash……

scapy attack snort

hw的时候防守方都是几百号人对几支攻击队,加上内网一大堆告警设备有些烦 一个恶心流量设……

chrome解密

chrome解密 """ 1:获取local state文件位置 2:获取加密的key(base……