搜索资源列表

  1. VB科学与工程数值算法

    0下载:
  2. 工程数值分析中的一些常用工具,相信对大家很有用的-engineering numerical analysis of a number of commonly used tools, we believe that the very useful
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-20
    • 文件大小:244736
    • 提供者:伤心
  1. 用于GSM加密的A5算法

    2下载:
  2. E统天下--织网梦 ...背景不同。Java是基于C++、面向计算机程序 设计...代替。 (2)Javascr ipt 源代码无须编译 嵌入HTML...则与之不同。Java的源代码必须进行编译,成为 存在...中的一部分,以一般的文本编辑器就可以连同HTML一... www.51foru.com/index008jsjc.htm 19K 2003-12-10 - 百度快照 C Java PHP Perl Python的程序代码美化工
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:49152
    • 提供者:王健
  1. 组合数学算法

    0下载:
  2. 本书讲解了常见而且实用的组合数学算法 可以作为算法分析和设计的补充读物 非常不错的一本书!!!!!!!!!!!!!!!!!1-book on the common and practical portfolio mathematical algorithms can be used as algorithm analysis and design of supplementary reading materials is a good
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:6653952
    • 提供者:喻林
  1. 图论算法

    0下载:
  2. 此书详细的介绍了各种流行和重要的图算法 识货的就下咯-book detailed account of a popular and important map know the quality of the algorithm on the basis of 1,10
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:5239808
    • 提供者:喻林
  1. 一种基于分形和金字塔算法的纹理综合方法

    0下载:
  2. 基于分形的纹理图像的金字塔处理方法,搞分形的可以-A grain image synthesis method depend on Pyramid algorithmic. It is useful for guys doing separate shape
  3. 所属分类:语音合成与识别

    • 发布日期:2024-05-20
    • 文件大小:382976
    • 提供者:山药蛋
  1. 算法分析与设计多媒体

    0下载:
  2. 在毕业设计期间由多人开发的一个算法演示系统,它包n皇后问题、拉维斯加算法等-This is a algorithm demo system developed by some persons, which including n queen problem, Laplac algorithm,etc.
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:3955712
    • 提供者:吴义军
  1. CSharp排序算法大全

    0下载:
  2. C#的排序大全源代码,有多种排序方法,对于程序开发可以直接使用。-C# ranking Daquan source code, a number of ranking methods for the development of procedures can be used directly.
  3. 所属分类:加密解密

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:陈先生
  1. C常用数值算法集

    0下载:
  2. C常用数值算法集,很有用,同时也是学习C的好帮手。-C commonly used numerical algorithm sets, useful, but also a good learning C helper.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-20
    • 文件大小:299008
    • 提供者:tany
  1. c 常用算法程序集

    0下载:
  2. C 语言常用算法程序集,对搞数学计算的人有一定的帮助,收藏也不错,以备不时之需!-algorithm program set in c in common use is some useful to people who study math and it is a good idea to keep it for the time when needed
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:7646208
    • 提供者:lxr
  1. KMP匹配算法

    0下载:
  2. 由于简单模式匹配算法在一次字符比较失败后,简单的把模式串位置向前移动一个字符位置,这样就丢掉了前面字符匹配中得到的信息,效率差。所以就需要一种无回溯的算法来提高效率,这里使用KMP(Knuth-Morris-Pratt)算法。模式串前面的连续片断部分称“前缀模式”,前缀模式在模式串后部重复出现的情况可以用来避免重复进行已经做过的检查,这是KMP算法中的一个重要概念。-as simple pattern-matching algorith
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:3072
    • 提供者:卢孝飞
  1. 经典算法演示系统

    0下载:
  2. 这是一个经典的数据结构动态演示系统,支持C语言和pascal语言,对初学者肯定会有很大帮助-This is a classic demonstration of dynamic data structure, and C language support pascal language for beginners certainly be of much help
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-20
    • 文件大小:2318336
    • 提供者:蓝羽
  1. 五种排序算法

    0下载:
  2. 是一个算法的小小汇总,使用vb语言编写,适合初学者学习。-algorithm is a little summary, the use of vb language, suitable for beginners to learn.
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-20
    • 文件大小:4096
    • 提供者:骥韬
  1. RSA解密和加密算法的实现和应用

    0下载:
  2. RSA算法 :首先, 找出三个数, p, q, r, 其中 p, q 是两个相异的质数, r 是与 (p-1)(q-1) 互质的数...... p, q, r 这三个数便是 person_key,接著, 找出 m, 使得 r^m == 1 mod (p-1)(q-1)..... 这个 m 一定存在, 因为 r 与 (p-1)(q-1) 互质, 用辗转相除法就可以得到了..... 再来, 计算 n = pq....... m, n 这两个
  3. 所属分类:加密解密

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:胡康康
  1. 边沿检测与提取,轮廓跟踪的图象算法

    0下载:
  2. vc++边沿检测与提高.轮廓跟踪的图象算法,一个好的图象处理原代码-vc edge detection and improve. Image contour tracking algorithm, a good source image processing
  3. 所属分类:图形图象

    • 发布日期:2024-05-20
    • 文件大小:76800
    • 提供者:张衡
  1. BP算法源程序

    0下载:
  2. 一个简单的用MATLAB写的BP算法源程序。-a simple written in MATLAB BP algorithm source.
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:胡莹
  1. 读者优先算法-操作系统

    0下载:
  2. 这是一个操作系统中的读者优先算法的实现绝对正确-This is an operating system as a priority readers algorithm to achieve absolutely correct
  3. 所属分类:uCOS开发

    • 发布日期:2024-05-20
    • 文件大小:1239040
    • 提供者:田田
  1. 进程调度算法-操作系统

    0下载:
  2. 这是一个操作系统的进程调度算法的实现绝对正确-This is a process of the operating system's scheduling algorithm to achieve absolutely correct
  3. 所属分类:uCOS开发

    • 发布日期:2024-05-20
    • 文件大小:264192
    • 提供者:田田
  1. des加密算法

    0下载:
  2. 一款和不错的用VC实现的DES算法,希望对大家对提意见,-section and a good VC with the DES algorithm, we hope that the right to say,
  3. 所属分类:加密解密

    • 发布日期:2024-05-20
    • 文件大小:4096
    • 提供者:周银春
  1. des算法的C实现

    0下载:
  2. 一个利用C语言来实现加密算法之DES算法的源码。-A source program of DES arithmetic using C .
  3. 所属分类:加密解密

    • 发布日期:2024-05-20
    • 文件大小:6144
    • 提供者:彭晓明
  1. 科学与工程数值计算算法(Visual Basic版)

    1下载:
  2. 科学与工程数值计算算法(Visual Basic版)一书的源代码。对科学研究者自己开发领域内计算程序极具参考价值。-science and engineering numerical algorithm (Visual Basic version) a book source. Scientific researchers to develop its own procedures for calculating the area of
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-20
    • 文件大小:202752
    • 提供者:雷柯
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 50 »

源码中国 www.ymcn.org