Static List
摘要:Static ListStatic List is the smart implementation of list data structure for those languages that have no pointer or similar function, such as Pascal
阅读全文
Singly Linked List
摘要:Singly Linked List Singly linked list storage structure:typedef struct Node{ ElemType data; struct Node *next;}Node; typedef struct Node *LinkList; Li
阅读全文
Sequential List
摘要:Sequential ListSequential list storage structure:#define LIST_INIT_SIZE 20 #define LIST_INCREASE 10typedef int Elemtype;typedef struct{ ElemType data;
阅读全文
Examples of complexity pattern
摘要:O(1):constant - the operation doesn't depend on the size of its input, e.g. adding a node to the tail of a linked list where we always maintain a poin
阅读全文
Kali Linux additional tools setup
摘要:The steps are pretty straight forward. The only tool that might cause some confusion is SMBexec. This requires you to interact 3 times with a differen
阅读全文
渗透测试阿克西
摘要:渗透测试阿克西 一组很棒的渗透测试资源,包括工具、书籍、会议、杂志和其他的东西 目录: 在线资源 渗透测试资源 Shell 脚本资源 Linux 资源 Shellcode 开发 Social社工资源 开锁资源 工具 渗透测试系统版本 渗透测试基础工具 漏洞扫描器 网络工具 Hex编辑器 破解 Win
阅读全文