摘要: 原文地址:https://blog.csdn.net/Sagittarius_Warrior/article/details/51305046 非原文,只做收藏 本文主要介绍在win10下如何设置windbg+vmware,以进行双机调试。本文主要参考:李Sir的博客,并浏览了大量网文,以及wind 阅读全文
posted @ 2018-04-24 10:32 黑马网仔 阅读(2214) 评论(0) 推荐(0) 编辑
摘要: 原文:https://blog.csdn.net/qq1841370452/article/details/52465243 安装VMware+Windbg+Win7内核驱动调试的笔记。 一、安装环境 主机: Win7 sp1 x64 虚拟机: VMware 8 虚拟机OS: Win7 sp1 x3 阅读全文
posted @ 2018-04-24 10:24 黑马网仔 阅读(1615) 评论(0) 推荐(0) 编辑
摘要: 1 #ifndef _GRAPH_H_ 2 #define _GRAPH_H_ 3 #include <stdbool.h> 4 5 typedef struct graph Graph; 6 typedef struct headNode HeadNode; 7 typedef struct pe 阅读全文
posted @ 2018-03-07 20:49 黑马网仔 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 散列表,它是基于高速存取的角度设计的,也是一种典型的“空间换时间”的做法。顾名思义,该数据结构能够理解为一个线性表,可是当中的元素不是紧密排列的,而是可能存在空隙。 散列表(Hash table,也叫哈希表),是依据关键码值(Key value)而直接进行訪问的数据结构。也就是说,它通过把关键码值映 阅读全文
posted @ 2018-03-06 02:14 黑马网仔 阅读(2290) 评论(0) 推荐(0) 编辑
摘要: 1 #ifndef _HASH_H_ 2 #define _HASH_H_ 3 #include <stdbool.h> 4 #include <stdlib.h> 5 #define SIZE 26 6 7 typedef struct node{ 8 char * word; 9 size_t 阅读全文
posted @ 2018-03-05 22:32 黑马网仔 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 4 #define SIZE 10 5 6 int * k_thSmallest(int * arr, int len, int k_len); 7 8 void find(int* arr, int low, int high, int k_len); 9 10 void swap(int * a, int *b);... 阅读全文
posted @ 2018-02-26 13:09 黑马网仔 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 1 char * strReplace(char *str, char *oldstr, char * newstr) 2 { 3 char *beg = strFind(str, oldstr); 4 if (!beg) 5 return str; 6 int lenStr = strlen(str); 7 int lenOldst... 阅读全文
posted @ 2017-12-26 17:35 黑马网仔 阅读(1246) 评论(0) 推荐(0) 编辑
摘要: 1 #ifndef _STACK_H_ 2 #define _STACK_H_ 3 4 typedef struct{ 5 void * elemType; 6 int elemSize; 7 int size; 8 int capacity; 9 void(*pfree)(void *); 10 阅读全文
posted @ 2017-12-22 01:10 黑马网仔 阅读(362) 评论(0) 推荐(0) 编辑
摘要: Emacs常用命令快速参考 Emacs常用命令的汇总,来自Emacs参考卡片 注意:以下命令中标注的按键,大写的C代表Control,在键盘上通常是Ctrl键,而M代表Meta,在键盘上通常是Alt键,S则代表Shift,在键盘上通常是Shift键,也就是 C Control M Alt S Shi 阅读全文
posted @ 2017-12-21 22:01 黑马网仔 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 1 #ifndef _GENERICQUICKSORT_H_ 2 #define _GENERICQUICKSORT_H_ 3 void generic_swap(void * pa, void * pb, int typeSize); 4 void generic_qsort(void * pa, 阅读全文
posted @ 2017-12-21 18:02 黑马网仔 阅读(328) 评论(0) 推荐(0) 编辑