杂
long for
这个作者很懒,什么都没留下…
展开
-
windbg双机调试配置
https://www.cnblogs.com/DarkBright/p/10843698.html转载 2019-11-24 20:59:18 · 127 阅读 · 0 评论 -
windbg调试虚拟机win7系统
https://www.cnblogs.com/pady/p/10468671.html转载 2019-11-08 10:16:34 · 182 阅读 · 0 评论 -
api讲座
第一课∶认识API 一、什么是API 首先,有必要向大家讲一讲,什么是API。所谓API本来是为C和C++程序员写的。API说来说去,就是一种函数,他们包含在一个附加名为DLL的动态连接库文件中。用标准的定义来讲,API就是Windows的32位应用程序编程接口,是一系列很复杂的函数,消息和结构,它使编程人员可以用不同类型的编程语言编制出的运行在Windows95和Windows NT操作系统上的...转载 2019-10-21 08:34:09 · 273 阅读 · 0 评论 -
桶排序
#define _CRT_SECURE_NO_WARNINGS //scanf警告就用这个#include<stdio.h>int a[100], n;void quicksort(int left, int right){int i, j, t, temp;//temp就是基准数if (left > right)return;temp = a[left];...原创 2019-09-28 12:01:49 · 91 阅读 · 0 评论 -
delete,new
反汇编和c中的malloc,free是一样都调用同一个系统api原创 2019-09-27 22:47:17 · 79 阅读 · 0 评论 -
冒泡排序
templatevoid sort(t arr, int nlength){for (int k = 0; k < nlength - 1; k++){for (int i = 0; i < nlength - 1 - k; i++){if (arr[i] > arr[i + 1]){int temp = arr[i];arr[i] = arr[i + 1];...原创 2019-09-26 17:38:44 · 78 阅读 · 0 评论 -
折半查找
int Find(int* arr, int nLength, int nElement){int nBegin = 0, nEnd = nLength - 1, nIndex;while (nBegin <= nEnd){nIndex = (nBegin + nEnd) / 2;//(nBegin+nEnd)>>1 //或者位移,但是更高效 if (nElem...原创 2019-09-26 17:37:59 · 107 阅读 · 0 评论 -
c++ shis指针
struct dateinfo{int year;int month;int day;dateinfo(){ int year=2015; int month=4; int day=2;}dateinfo(int year,int month,int day){ this->day = day; this->month = month; this->...原创 2019-09-26 17:34:58 · 182 阅读 · 0 评论 -
c++虚函数
struct base{public:virtual void function_1(){printf(“function_1…\n”);}virtual void function_2(){printf(“function_2…\n”);}virtual void function_3(){printf(“function_3…\n”);}};int main(i...原创 2019-09-26 17:24:35 · 91 阅读 · 0 评论 -
c++重载
#include using namespace std;void func(){cout << "无参数的func" << endl;}void func(double t){cout << “有参数” << endl;}void test01(){func(1.11);}int amain(int argc, in...原创 2019-09-26 17:20:23 · 69 阅读 · 0 评论 -
[翻译]“PE文件格式”1.9版 完整译文(附注释)
转载https://bbs.pediy.com/thread-21932-1.htm转载 2019-09-13 23:14:08 · 202 阅读 · 0 评论 -
PE偏移
±--------±--------±--------±--------±--------±--------+| 段名称 虚拟地址 虚拟大小 物理地址 物理大小 标志 |±--------±--------±--------±--------±--------±--------+| Name VOffset VSize ROffset RSiz...转载 2019-09-13 21:20:04 · 251 阅读 · 0 评论 -
用c读取pe文件数据
#include “pch.h”#include #include #include<Windows.h>IMAGE_DOS_HEADER myDosHeader;IMAGE_NT_HEADERS myNTHeader;IMAGE_FILE_HEADER myFileHeader;IMAGE_OPTIONAL_HEADER myOptionHeader;IMAGE_SE...原创 2019-09-09 12:29:21 · 290 阅读 · 0 评论