搜索资源列表
mindistance
- 最短路径算法源码,很多人需要的。本人载网站开发gis,游自编的最短路径查询程序,速度特快,3万节点,35000条路全部遍历,只需1秒。现将最短路径的思路告诉大家,希望大家在优化,并用不同语言编制,我正在学delphi,准备用delphi做成库,本例以由拓扑关系的arc/info 文件为数据源。其中a1,b1,c1是以fnode排序生成的数组,a1对应fnode,b1对应tnode,c1对应length,同样a2,b2,c2,是以tnode 生成的数组。Indexa1是对应某一起点与其相连的终点的
快排
- 快速排序 算法的基本思想: 快速排序的基本思想是基于分治策略的。对于输入的子序列ap..ar,如果规模足够小则直接进行排序,否则分三步处理 -fast algorithm basic idea : Quick Sort The basic idea is based on the divide and conquer strategy. For input sequences ap .. ar, if the scale is small enough for dire
RLE
- RLE的基本思路是,把数据分两种情况对待: A1.一些连续的重复字节 A2.一些连续的,不相重复的字节 RLE压缩最常见的一种算法思路: 将全部的数据分成很多块,这些块的长度各不一样: all data = [block] + [block] + ... + [block] 每一块由两部分顺序组成: a block = [header] + [data] 其中header部分占2字节16位,这16位中的最高位,标志了这个block的属性,是属于上面的
IdeaDlg
- IDEA算法的加密实现,实现对明文的加密,加密效果很不错-IDEA encryption algorithm, has implemented an express right of encryption, encryption is very good effect
DistanceVector_Routing
- Distance Vector Routing,也称为Bellman-Ford shortest path algorithm。基本思想是: 每个路由器(路由结点)都维持一张路由表,包括路由的目的地(V)和路由的距离(D)。每个路由器都定期与相邻结点交换路由表信息,据此更新它们自己的路由表。所有结点都监听从其它结点传来的路由表,并按照下列规则更新其路由表: -发现了一条到达某目的结点的新路由,而该路由在原来的路由表中不存在(即发现了一条新路由),则在路由表中增加该路由。 -发现了一条
Crypt0-P9
- 这是又一个加密算法源代码集合如elgamal,idea等50个算法-This is also an encryption algorithm source code pool as ElGamal, idea etc. 50 Algorithm
IDEA
- IDEA (International Data Encryption Algorithm) Data Encryption Algorithm by famous Chinese scholars and password Jiaboshi experts James L. Massey in 1990 jointly proposed. As a block cipher designed a wonderful work, IDEA algorithm has strong anti-at
idea
- 密码学中的IDEA加密算法的源代码,在Vc++的环境下运行的。-Cryptography in the IDEA encryption algorithm source code, in Vc++ environment to run.
IDEA
- 利用IDEA加密算法进行文件加密,保证信息在网络中的安全传输-IDEA encryption algorithm used for file encryption, to ensure the security of information transmitted in the network
IDEA
- IDEA算法 C实现 希望能给大家带来帮助。谢谢~-IDEA algorithm C to achieve We hope you help. Thank you ~
Elevator-algorithm-on-C-P-P-
- 众所周知,面向对象的程序设计更适合对现实生活中的描述,更加体现了软件的工业化的精神,所以现在大部分的软件开发工作都围绕OOP的思想来进行的。但是在对现实生活中的实际问题,如何对所研究的系统进行面向对象的分析与设计-As we all know, object-oriented programming is more suitable for the descr iption of real life, more embodied the spirit of the industrializati
Summary-of-Array-Application-in-C
- 数组是C语言中特性较强、功能较好的应用之一,然而数组也是不易理解和掌握的概念。本文针对C语言中重要内容之一"数组",结合实例,介绍数组在解决实际问题中的一些基本操作的基本思想、算法描述以及指出数组在实际应用中常出现的问题,以便于掌握数组的使用技巧,对同学们在学习数组时有一定的指导意义。-Array of C language features strong, one good application functionality, but the array is not easy to unde
I4_iideaaD
- IDEA算法,用C++实现的。对然不不是界面的。但是对于理解这个算法非常有用 -IDEA algorithm with C++ achieve. However, not interface. But very useful for understanding this algorithm
A-Genetic-Algorithm-Based-AGC-of-a-Restructured-P
- In this paper, the parameters of PID controller for Automatic Generation Control (AGC) is tuned according to Generic Algorithms (GAs) based performance indices in the restructured power systems. The key idea of the proposed method is to use the
IDEA
- IDEA的加密算法,用MFC的界面完成,求站长通过审核-IDEA encryption algorithm, using MFC' s interface is complete, ask webmasters approved
fft--algorithm(CPP)
- fft算法的实现,包括时域抽取和频域抽取。可以帮助学生快速了解fft算法的核心思想。-This software is a implementation of fft algorithm, which includes the time-domain and frequency-domain.Using this software, students can quickly understand the core idea of fft algorithm.
idea
- 关于idea算法加密工具实现的源码,详细解释了idea算法实现的过程和说明-About idea encryption algorithm tools to achieve the source code
Page-permutation-algorithm-
- 虚拟存储请求页式存储管理中几种基本页面置换算法的基本思想和实现过程-The basic idea and implementation process of several basic page replacement algorithms in virtual storage request page storage management,
grammar
- 第1章 算法引论 1.1 算法与程序 1.2 表达算法的抽象机制 1.3 描述算法 1.4 算法复杂性分析 小结 习题 第2章 递归与分治策略 2.1 速归的概念 2.2 分治法的基本思想 2.3 二分搜索技术 2.4 大整数的乘法 2.5 Strassen矩阵乘法 2.6 棋盘覆盖 2.7 合并排序 2.8 快速排序 2.9 线性时间选
.idea
- :设计一个按优先数调度算法实现处理器调度的程序 提示: (1)假定系统有 5 个进程,每个进程用一个 PCB 来代表。((1) design a program scheduler for scheduling processors according to the priority scheduling algorithm: (1) assume that the system has 5 processes and each process is represented by a PCB.)