摘要:
看样子是要让我们通过read(0, &unk_601068, 0x10uLL),读入 unk_601068 将 dword_60106C 覆盖 6c-68=4,所以: from pwn import * io = remote("111.198.29.45",45604) payload = "A" 阅读全文
摘要:
所以题目要求是输入生日1926 payload: from pwn import * io = remote("111.198.29.45",40803) io.recvline() io.sendline('1234') io.recvline() payload = "A"*8 payload 阅读全文
摘要:
所以题目要求是输入生日1926l 阅读全文
摘要:
没有环的过程分析: #include<stdio.h> #include<stdlib.h> #include<iostream> #define VERTICES 6 #define LINE 5 using namespace std; /* parent:数组解决并查集合并问题 VERTICE 阅读全文
摘要:
PS:所有的代码示例使用的都是这个图 2019-10-29 利用p126的算法5.3建立二叉树,并完成三种遍历算法 中序 后序 先序 #include<iostream> #include<stack> #define TElemType char using namespace std; type 阅读全文
摘要:
//二叉树的顺序存储表示 #define MAXTSIZE 100 typedef TElemtype SqBiTree[MAXTSIZE]; SqBiTree bt; //二叉树的二叉链表存储表示 typedef struct BiTNode { TElemType data; struct Bi 阅读全文