码迷,mamicode.com
首页 >  
搜索关键字:datastructure    ( 155个结果
Nmap 源码学习三 nmap_main主程序分析
主体程序位置在nmap.cc line:1640学习要点:程序在1650行,新建一个主机的单例对象,#ifndef NOLUA /* Only NSE scripts can add targets */ NewTargets *new_targets = NULL; /* Pre-Scan and Post-Scan script results datastructure */...
分类:其他好文   时间:2015-06-22 09:53:28    阅读次数:329
保存openssl中RSA密钥对
标准的openssl生成的证书的顺序是 : [OpenSSL 测试程序: https://github.com/qianguozheng/datastructure]如下是生成密钥对, 根据密钥并且分别保存密钥对的私钥,与公钥.经过测试, 密钥对中的私钥可以提取出公钥, 我对其密钥不是很了解,通过测试发现是可以的. 不知道谁可以讲述下./* 产生RSA密钥 */ RSA *rsa = RSA_ne...
分类:其他好文   时间:2015-06-16 19:13:58    阅读次数:85
gethostbyname
SYNOPSIS#include struct hostent *gethostbyname(const char *name);Data Structurehttp://www.cnblogs.com/LubinLew/p/POSIX-DataStructure.html#struct_hoste...
分类:其他好文   时间:2015-06-09 16:16:24    阅读次数:175
【DataStructure】The description of Java Collections Framework
The Java Connections FrameWork is a group of class or method and interfacs in the java.util package. Its main purpose is to provide a unified framewor...
分类:编程语言   时间:2015-06-08 13:03:42    阅读次数:175
【数据结构复习】线性表的链式存储--单链表
链表的重点概念: 数据域和指针域 头指针和头结点 下面是单链表的实现源码: // // main.c // DataStructure // // Created by SuooL on 15/5/22. // Copyright (c) 2015年 SuooL. All rights reserved. // #include "stdio.h" #include "strin...
分类:其他好文   时间:2015-05-22 09:40:24    阅读次数:212
PAT Mooc datastructure 6-1
Saving James Bond - Hard VersionThis time let us consider the situation in the movie "Live and Let Die" in which James Bond, the world's most famous s...
分类:其他好文   时间:2015-01-09 01:32:46    阅读次数:311
LeetCode Solutions : Find Minimum in Rotated Sorted Array
【算法思路】利用折半查找的思路去查找这个最小元素 【编程步骤】 * 1. 如果数组num只有一个元素,则所求的最小的元素就是它了; * 2. 若left到right位置的元素严格递增,则最小的元素为num[left],如左图 否则,如右图,利用折半查找,若left到mid递增有序,则最小元素必出现在右边部分:mid+1到right; 若mid到right递增有序,则最小元素出现在左边部分:left到mid; while(left<right){ if(num[left]<num...
分类:其他好文   时间:2015-01-07 16:55:49    阅读次数:171
PAT mooc DataStructure 4-2 SetCollection
数据结构习题集-4-2 集合的运用1.题目:We have a network of computers and a list of bi-directional connections. Each of these connections allows a file transfer from o...
分类:其他好文   时间:2014-12-31 00:53:34    阅读次数:281
红黑树
package datastructure.tree; /** * 红黑树是基于平衡二叉搜索树的一种扩展,它是给据红黑结点来判断是否旋转并进行相应的处理 * 这样就省去了平衡因子的判断,简化了算法的难度。根据红黑结点以调整树的平衡因子,这种 方 * 法可以近似平衡。红黑树具有以下性质: * 1.每个结点要么是黑色,要么是红色。(源于算法导论第三版) * 2.根结点是黑色的。 * ...
分类:其他好文   时间:2014-12-06 19:37:07    阅读次数:221
VisuAlgo 学习笔记——Bitmark
原资源链接为:Bitmark 其中各个模块代表的含义: - Set S: 初始值s - Set bit(j): s or 第j位 - Check bit(j):s and 第j位 - Toggle bit(j):s xor 第j位(相同的bit为0,不同则为1) - Clear bit(j位不为1): and 运算 - Least ...
分类:其他好文   时间:2014-12-04 20:06:09    阅读次数:789
155条   上一页 1 ... 10 11 12 13 14 ... 16 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!