会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
磐正
博客园
首页
新随笔
联系
管理
订阅
1
2
3
4
5
···
13
下一页
2025年4月30日
BFS实现单源最短路径
摘要: /* 广度优先搜索 实现单源最短路径 */ #include<iostream> #include<queue> #include<vector> using namespace std; class Graph{ private: int V; //顶点数量 vector<vector<int>>
阅读全文
posted @ 2025-04-30 16:00 磐正
阅读(12)
评论(0)
推荐(0)
2022年12月13日
lamda用法
摘要: https://www.jb51.net/article/208761.htm
阅读全文
posted @ 2022-12-13 10:31 磐正
阅读(30)
评论(0)
推荐(0)
固定长度分割字符串
摘要: import re string = '123456789abcdefg' re.findall(r'.{3}', string) ['123', '456', '789', 'abc', 'def']
阅读全文
posted @ 2022-12-13 09:58 磐正
阅读(27)
评论(0)
推荐(0)
2022年11月22日
整形溢出
摘要: https://www.freesion.com/article/53931338847/
阅读全文
posted @ 2022-11-22 11:26 磐正
阅读(23)
评论(0)
推荐(0)
2022年11月21日
fastbin attack
摘要: https://blog.csdn.net/qq_41453285/article/details/99315504 非常重要 eayheap 萌新 暖暖师傅: https://blog.csdn.net/mcmuyanga/article/details/111294437
阅读全文
posted @ 2022-11-21 15:39 磐正
阅读(24)
评论(0)
推荐(0)
unsortbin attack
摘要: Unsorted Bin 双向循环链表,先进先出 如果unsorted bin中只有一个chunk的话,chunk的fd、bk指针都指向main_arena+偏移: https://mp.weixin.qq.com/s/1KhiulR-webHsBZhUzQzKg https://blog.csdn
阅读全文
posted @ 2022-11-21 15:20 磐正
阅读(56)
评论(1)
推荐(0)
2022年10月19日
王道
摘要: https://blog.csdn.net/qq_45203665/article/details/119812341
阅读全文
posted @ 2022-10-19 14:01 磐正
阅读(12)
评论(5)
推荐(0)
2022年10月12日
Crypto不能用
摘要: https://blog.csdn.net/Ahuuua/article/details/108800712
阅读全文
posted @ 2022-10-12 17:46 磐正
阅读(17)
评论(0)
推荐(0)
2022年10月8日
memset,allocate,sizeof,strlen,strcpy,strcat
摘要: #include<stdio.h> #include<stdlib.h> #include<string.h> int main() { // typedef struct Node{ // int data; // struct Node* p; // }Node, *pNode; int arr
阅读全文
posted @ 2022-10-08 11:06 磐正
阅读(32)
评论(1)
推荐(0)
2022年9月29日
modbus相关
摘要: Modbus寄存器分类及地址分配 python是实现ModSim寄存器读取 http://t.zoukankan.com/liuwenhua-p-13746044.html https://www.cnblogs.com/liuwenhua/p/13746044.html https://blog.
阅读全文
posted @ 2022-09-29 18:21 磐正
阅读(41)
评论(3)
推荐(0)
1
2
3
4
5
···
13
下一页
公告