搜索资源列表
EncryDeCry
- 我在字符串加密时的处理是每次取字符串的三个字节,再把三个字符连成一个24位的整型,前8位存放第一个字符,中间8位存放第二个字符,最后8位存放第三个字符。再取这个整型数的前6位对应的数值去差用户提供对应表,转化成相应的字符,再取第二个6位,第三个6位,第四个六位进行字符的转换。再重复前面相同的操作值到整个字符串转换完毕。在解密的过程就是根据用户提供的表进行查找和移位换原字符串。 这种算法比通常的直接根据用户提供的表进行转换有更高的安全性,且加密解密的效率很高。-string encryptio
zmem
- 开放源码的查找内存泄漏算法。对用C和C++的人很有帮助。-open source search algorithm memory leak. The C and C were helpful.
带通配符的字符串匹配算法源代码
- 带通配符的字符串匹配算法源代码。程序中的查找算法比较先进,提高模糊查询的功能,可以查询字母和汉字,很有用吆。-with wildcard string matching algorithm source code. Procedures for the more advanced search algorithm to improve fuzzy query function can find letters and Chinese characters, useful shout.
crc_low
- 用c语言实现crc算法,采用ccitt标准多项式,查找表方法实现,低位先处理,接收校验成功标志为f0b8.-Checksum crc algorithm to achieve the standard which use ccitt polynomial, using look-up table method to achieve, low bit to deal with first, mark of success receiving check is f0b8.
os_2
- 存储分配算法采用首次适应(FF)法。根据指针fhead查找空闲分区链,当找到第一个可满足分配请求的空闲区时便分配之。当某空闲区被分配后的剩余空闲空间大于规定的碎片最小容量MIN,则形成一个较小的空闲区留在空闲分区链中。 回收时,根据MAT将指定分区链入空闲分区链。若该分区有前邻或后邻分区,则将它们拼接成一块较大的空闲区。 -Storage allocation algorithm uses the first time to adapt to (FF) method. According
118-Hamilton
- 哈密顿回路,对于给定的一个图查找图中是否存在哈密顿回路的一个算法。-Hamiltonian circuit, for a given a map to find the existence of maps of a Hamiltonian circuit algorithm.
txt
- 用二叉链表做存储结构,输入键值序列,建立一棵二叉排序树并在二叉排序树上实现查找算法。-To do with binary storage structure list, enter the key sequence, set up a binary sort tree and binary search algorithm to sort the tree implementation.
make.txt
- 本代码实现语音的很成功能,基于GB编码的汉字用某种算法,来查找其在语音库中的文字-The
search
- 各种查找算法,如顺序查找、折半查找、二分查找等,应有尽有-a series of ideas for searching
meme_current.tar
- motif查找 me算法,用于核苷酸序列分析,源代码-Find me algorithm motif for nucleotide sequence analysis, the source code
crc_high
- 用c语言实现crc算法,采用ccitt标准多项式,查找表方法实现,高位先处理,接收校验成功标志为1d0f.-Checksum crc algorithm to achieve the standard which use ccitt polynomial, using look-up table method to achieve, high bit to deal with first, mark of success receiving check is 1d0f.
code
- 此算法用于实现一种基于查找表的混沌加密,将随机产生的一个数组加密后输出,同时也可以将解密后的数据与原始数据进行对照,本算法已经在5509芯片上进行实时运行过,用于对16bit语音信号的高16位加密,能满足实时性。-The algorithm used to achieve a look-up table based chaotic encryption, will be an array of randomly generated encrypted output, but also can d
md5
- 主要功能特色: 一,结合提权包大加对网站提权的可能,但也要靠你技术 二,浏览速度快,批量扫文件节省时间,可修改文件属性 三,嗅探服务器打开端口与脚本嗅探,数据库直接查找与连接 四,asp木马体积小易于传输潜伏时间长 五,方便提升系统权限,并可二次加密 六,本站的大马加密算法与普通ASP木马完全不一样,支持Base64算法加密 七,本ASP木马功能支持批量挂,批量扫,批量查询,rar打包,批量上传等等 八,本ASP大马超级免杀挑战世界杀软,免杀持续更新中
erchashudiguifeidiguisuanfa
- 二叉树递归非递归算法:先序查找、中序查找、后序查找-Recursive binary tree non-recursive algorithm: first-order to find, in order to find the latter order to find
quadtreesample.php
- 游戏编程中的四叉树查找算法,可以用于boss搜索算法等。可以优化-quadtree in game programming
dcrc
- 基于crc32的dhash,减少了普通哈希算法的冲突概率,是一种新鲜的哈希查找算法-Crc32 on the dhash, reducing the probability of conflict common hash algorithms, is a fresh hash search algorithm
erfenchazhao
- 经典查找算法之二分查找,对大家很有用的,因为这是一个系列-The classical Find algorithm of binary search
hashsearch
- 用C实现的一个Hash查找算法,包括hash表的创建、删除、节点的查找等基本操作,可用于unsigned char数组做为输入去生成unsigned long long的key值。这个也可以根据自己的需要修改,如用于char数组作为输入去生成unsinged long的key值等。-The basic operation of the C implementation of a Hash search algorithm, including the creation of the hash t
NPU-c-language-major-operations
- 本程序是一个演示折半查找算法的演示程序。由用户输入查找的数据表列和查找的数据,系统在将数表排序后可以在屏幕上演示在排序后的表列中按折半查找法查找该数据的具体过程(通过每次查找的中间数据、下次查找表列等,具体效果见下图),支持多次演示、错误提醒,程序暂停演示功能。 -NPU c language major operations
search
- 本程序实现了 各种查找算法,主要是几个版本的二分查找和顺序查找,并给出接口进行各种算法的比较。-This program implements a variety of search algorithms, mainly several versions of binary search and sequential search, and gives a comparison of various algorithms interface.