CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 书籍源码 搜索资源 - c 算法

搜索资源列表

  1. Floyd-Warshall-c-chengxi

    0下载:
  2. Floyd-Warshall算法描述 1)适用范围: a)APSP(All Pairs Shortest Paths) b)稠密图效果最佳 c)边权可正可负 2)算法描述: a)初始化:dis[u,v]=w[u,v] b)For k:=1 to n For i:=1 to n For j:=1 to n If dis[i,j]>dis[i,k]+dis[k,j] Then Dis[I,j]:=dis[I,k]+dis[k,j] c)算法结
  3. 所属分类:书籍源码

    • 发布日期:2008-10-13
    • 文件大小:3567
    • 提供者:江晨
  1. ACM

    0下载:
  2. 算法精华,学习算法使用,据说是目前最全的ACM竞赛的算法大全,不看会后悔的哦-Algorithm is the essence of learning algorithm to use, is said to be the most full-race of the ACM algorithm Daquan, oh do not look would regret
  3. 所属分类:source in ebook

    • 发布日期:2017-04-01
    • 文件大小:353803
    • 提供者:liuliu
  1. 数据挖掘c++代码

    2下载:
  2. 包括关联 聚类 神经网络 遗传算法
  3. 所属分类:书籍源码

  1. 大堆常用C源码

    0下载:
  2. 都是C语言常用的算法-C language is commonly used algorithm
  3. 所属分类:source in ebook

    • 发布日期:2017-11-15
    • 文件大小:295067
    • 提供者:
  1. computerarithmetic(C++)

    0下载:
  2. 计算机常用数值算法与程序(C++版) 压缩包解压时没有密码-Computer numerical algorithm and procedures used (C++ Version) when extracting compressed packets do not have a password
  3. 所属分类:source in ebook

    • 发布日期:2017-11-12
    • 文件大小:464992
    • 提供者:lihui
  1. C-ORDER

    0下载:
  2. 裡邊包含常用的排序算法,比如冒泡、快速、等等都有詳細的原始代碼供大家分享,希望對大家有用。-Inside contains commonly used sorting algorithm, such as bubbling, fast, and so a detailed source code for all to share, in the hope that useful.
  3. 所属分类:source in ebook

    • 发布日期:2017-04-02
    • 文件大小:1198
    • 提供者:孙健
  1. c

    0下载:
  2. C++经典算法源码绝对的经典好的算法源码-C++ classic algorithm source algorithm absolute classic good source
  3. 所属分类:source in ebook

    • 发布日期:2017-05-01
    • 文件大小:842595
    • 提供者:name
  1. c

    0下载:
  2. c入门代码大全,算法大全,数据类型,文件,指针-c Guinness entry code, algorithms Guinness Entry code Guinness, Guinness algorithm, data type, file, pointer
  3. 所属分类:source in ebook

    • 发布日期:2017-03-30
    • 文件大小:796102
    • 提供者:yxing
  1. the-codes-of-C-about-important-algorithms

    0下载:
  2. 10个重要的算法C语言实现源代码:拉格朗日,牛顿插值,高斯,龙贝格,牛顿迭代,牛顿-科特斯,雅克比,秦九昭,幂法,高斯塞德尔-10 key algorithm C language source code: Lagrange, Newton interpolation, Gaussian, Romberg, Newton, Newton- Cortez, Jacobi, Qinjiu Zhao, power method, high Sisedeer
  3. 所属分类:source in ebook

    • 发布日期:2017-03-23
    • 文件大小:7623
    • 提供者:jhy
  1. C-algorithm-Sources

    0下载:
  2. 《妙趣横生的算法(C语言实现)》的源代码,学习算法的朋友们看看。-" Fun algorithm (C language)," the source code, learning algorithms friends to see.
  3. 所属分类:source in ebook

    • 发布日期:2017-03-28
    • 文件大小:76852
    • 提供者:醉舞明月
  1. C-C-model

    0下载:
  2. 基于matlab的C-C算法,用于预测,计算嵌入维数和延迟时间,很好用,简单。-The C-C based on matlab to forecast,to calculate the m and delay time,it is very good ,and useful.
  3. 所属分类:source in ebook

    • 发布日期:2017-04-12
    • 文件大小:913
    • 提供者:徐新平
  1. 算法及代码

    0下载:
  2. C语言经典代码案例子,C language classic code,C language classic codeC language classic codeC语言深入必备(C language classic code)
  3. 所属分类:书籍源码

    • 发布日期:2017-12-25
    • 文件大小:110592
    • 提供者:肖洒
  1. C语言实现的算法

    0下载:
  2. 有几个非常常用的算法比如判断是否是闰年,求三个数的最大数,判断是否是素数,输出矩阵,(There are several very common algorithms, such as whether it is a leap year, the maximum number of three numbers, to determine whether the prime number, the output matrix,)
  3. 所属分类:书籍源码

    • 发布日期:2017-12-23
    • 文件大小:21504
    • 提供者:花之灵
  1. 常用算法程序集第五版

    0下载:
  2. 数值积分、线性方程组求解、数据处理、统计分析算法(Numerical integration, linear equations, data processing, statistical analysis algorithm)
  3. 所属分类:书籍源码

    • 发布日期:2018-01-02
    • 文件大小:174080
    • 提供者:落木1
  1. Dijkstra迪捷斯特拉算法

    0下载:
  2. 迪杰斯特拉算法是从一个顶点到其余各顶点的最短路径算法,解决的是有向图中最短路径问题。迪杰斯特拉算法主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。(The Dijkstra algorithm is the shortest path algorithm from one vertex to the other vertices, and the shortest path problem in the directed graph is solved. The main featur
  3. 所属分类:书籍源码

    • 发布日期:2018-01-05
    • 文件大小:3689472
    • 提供者:静守成雯
  1. C语言编程

    0下载:
  2. C语言常见编码练习题,提高算法水平。附源码。(C language common coding exercises to improve the level of the algorithm.)
  3. 所属分类:书籍源码

    • 发布日期:2018-01-08
    • 文件大小:17095680
    • 提供者:香茗
  1. C程序设计语言(第2版·新版)

    0下载:
  2. C语言作为许多编程语言的基础,许多开发者的入门功夫,扎实的理论基础是未来发展的一个决定性因素。但是,语言终究只是工具,算法才是核心,思路才是灵魂。本教程在知识点上安排了大量的习题,希望读者通过练习,学习编程的设计思路,学会设计算法,学会构建程序。(C language as the basis of many programming languages, many developers get started, a solid theoretical foundation is a decisi
  3. 所属分类:书籍源码

    • 发布日期:2018-04-19
    • 文件大小:1102848
    • 提供者:rzf_rookie
  1. C语言冒泡排序法

    0下载:
  2. 冒泡排序(Bubble Sort),是一种计算机科学领域的较简单的排序算法。 它重复地走访过要排序的数列,一次比较两个元素,如果他们的顺序错误就把他们交换过来。走访数列的工作是重复地进行直到没有再需要交换,也就是说该数列已经排序完成。(Bubble sorting is a simpler sorting algorithm in the field of computer science. It repeats the sequence of the sequence, and compa
  3. 所属分类:书籍源码

    • 发布日期:2018-04-29
    • 文件大小:6144
    • 提供者:Bruce Leung
  1. 数据结构与算法分析C++描述源代码

    0下载:
  2. 数据结构与算法分析C++描述源代码,书籍源码,学习数据结构,了解这些结构应该怎么实现(Data Structure and Algorithm Analysis C++ Descr iption Source Code)
  3. 所属分类:书籍源码

    • 发布日期:2018-04-29
    • 文件大小:72704
    • 提供者:李小透啊
  1. 数据结构与算法分析:C语言描述

    0下载:
  2. 书中详细介绍了当前流行的论题和新的变化,讨论了算法设计技巧,并在研究算法的性能、效率以及对运行时间分析的基础上考查了一些高级数据结构,从历史的角度和近年的进展对数据结构的活跃领域进行了简要的概括。(The book introduces the current popular topics and new changes, discusses the algorithm design skills, and examines some advanced data structures on th
  3. 所属分类:书籍源码

    • 发布日期:2018-05-02
    • 文件大小:7826432
    • 提供者:tjtony
« 12 3 4 5 6 7 8 9 10 ... 19 »
搜珍网 www.dssz.com