上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页

2016年2月10日

摘要: 二叉堆即优先队列,在本例程中,我们将用自增数组模拟完全二叉树。我将《数据结构与算法分析》上的的代码片段加入自己的理解简单实现了该结构: BinaryHeap.hpp: #ifndef BINARYHEAP_HPP_INCLUDED #define BINARYHEAP_HPP_INCLUDED # 阅读全文
posted @ 2016-02-10 16:25 顾南星 阅读(261) 评论(0) 推荐(0) 编辑
 
摘要: 这个世界是巨大的宝岛, 没错!现在就开始冒险!!! http://www.bilibili.com/video/av3309021/ 阅读全文
posted @ 2016-02-10 09:49 顾南星 阅读(143) 评论(0) 推荐(0) 编辑

2016年2月5日

摘要: 布下屏蔽键盘鼠标消息的全局钩子,并将全局变量添加进一个共享区段防止发生“写入时复制”。 阅读全文
posted @ 2016-02-05 17:01 顾南星 阅读(162) 评论(0) 推荐(0) 编辑

2016年1月27日

摘要: 树是一种简单的数据结构,其大部分操作的运行时间平均为O(logN)。我将《数据结构与算法分析》上的的代码片段加入自己的理解简单实现了该结构: BinarySearchTree.h源码如下: #ifndef BINARYSEARCHTREE_H #define BINARYSEARCHTREE_H # 阅读全文
posted @ 2016-01-27 16:59 顾南星 阅读(166) 评论(0) 推荐(0) 编辑

2016年1月25日

摘要: 什么?要做个项目?来来来,你先把十万字需求分析给写了,写不好不许吃饭! 阅读全文
posted @ 2016-01-25 15:21 顾南星 阅读(511) 评论(0) 推荐(0) 编辑

2016年1月21日

摘要: 一边说着“不可以还没试就先放弃”,一边认真吃饭的女生真的让人抵抗不了啊。http://www.bilibili.com/video/av2395980/ 阅读全文
posted @ 2016-01-21 18:56 顾南星 阅读(291) 评论(0) 推荐(1) 编辑

2016年1月20日

摘要: 系统 : Windows xp程序 :CrackMe#1程序下载地址 :http://pan.baidu.com/s/1nuagj6h要求 : 编写注册机使用工具 :IDA & OD可在看雪论坛中查找关于此程序的破文:http://bbs.pediy.com/showthread.php?t=290... 阅读全文
posted @ 2016-01-20 11:17 顾南星 阅读(784) 评论(0) 推荐(0) 编辑

2016年1月19日

摘要: 检测{}[]()是否一一配对:#include using namespace std;template class Vector{ public: explicit Vector( int initSize = 0 ) : theSize( initSize ),... 阅读全文
posted @ 2016-01-19 21:50 顾南星 阅读(367) 评论(0) 推荐(0) 编辑
 
摘要: 以下是实现以及应用的一个例程:#include using namespace std;template class Vector{ public: explicit Vector( int initSize = 0 ) : theSize( initSize ),... 阅读全文
posted @ 2016-01-19 21:11 顾南星 阅读(283) 评论(0) 推荐(0) 编辑
 
摘要: 以下是实现以及应用的一个例程:#include using namespace std;template class Vector{ public: explicit Vector( int initSize = 0 ) : theSize( initSize ),... 阅读全文
posted @ 2016-01-19 20:28 顾南星 阅读(211) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页