CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 源码下载 数值算法/人工智能 数据结构常用算法

资源列表

« 1 2 ... .36 .37 .38 .39 .40 741.42 .43 .44 .45 .46 ... 2673 »
  1. 0-1-beibao-

    0下载:
  2. 0。1 背包问题,带有输入说明,和程序详细解释-0.1 knapsack problem, with input instructions, and procedures explained in detail
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:72.37kb
    • 提供者:刘欣欣
  1. linked_list

    0下载:
  2. 学习数据结构中的双向链表的例子,自己实现了一遍并经过验证,供需要者学习。-source code for data struct linked list
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1.19kb
    • 提供者:randolph
  1. 100204031009

    0下载:
  2. 1.掌握栈的类定义及基本操作:初始化栈、判栈为空、出栈、入栈等运算 2. 掌握栈的应用 3.利用栈的基本操作实现将任意一个十进制整数转化为R进制整数-1 master class definition and the basic operation of the stack: stack initialization and sentenced to the stack is empty, the stack, the stack operations. The stack of app
  3. 所属分类:Data structs

    • 发布日期:2017-05-06
    • 文件大小:1017.7kb
    • 提供者:林文众
  1. students

    0下载:
  2. 基于C语言的学生信息管理系统。包含查插删改的功能。并且添加了清除键盘缓冲区的函数。适合C语言初学者。-C-based student information management system. Contains the functions check the plug excision. And add a function to clear the keyboard buffer. Suitable for the C language for beginners.
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:218.76kb
    • 提供者:张鑫
  1. HuffmanCode

    0下载:
  2. 在电报通讯中,电文是以二进制的0、1序列传送的。字符集中的字符的使用频率是不同的(比如e和t的使用较之q和z要频繁得多),哈夫曼编码可以使得编码的总长最短,从而相同的位长可以传送更多的信息。本程序用c语言来仿真哈夫曼编码的过程,其中运用动态分配数组存储哈夫曼树和动态分配数组存储哈夫曼编码表等c语言常用知识。另外,程序中包含极其详细的注解,十分有利于学习。 -Telegraph communications, the message is binary 0, 1 sequence transm
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1.37kb
    • 提供者:Mei
  1. 100204031009-linwenzhong

    0下载:
  2. 编写并调试顺序表类定义(由线性表类派生)及顺序表基本操作的算法实现。-To write and debug the class definition of the sequence table (derived by the linear table class) and the basic operation of the sequence table algorithm.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:374.6kb
    • 提供者:林文众
  1. SparseMatrix

    0下载:
  2. 稀疏矩阵的三元组存储及操作实现 【实验目的】 1. 调试运行课本中的第4章节的代码示例 2. 掌握矩阵的类定义及基本操作:构造矩阵、矩阵的寻址、矩阵的基本操作 3. 掌握矩阵的应用-Triples sparse matrix storage and operations to achieve
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:10.09kb
    • 提供者:林文众
  1. Heap

    0下载:
  2. 最小堆的实现 最小堆的创建、调整、插入和删除算法,运用C++类实现最小堆的类定义及基本操作算法 -Minimum heap to achieve the minimum heap to create, adjust, insert and delete algorithms use C++ class to class definition and the basic operation algorithms to achieve the minimum heap
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:2.26kb
    • 提供者:林文众
  1. ShortestPath_FLOYD

    0下载:
  2. 代码的功能:用弗洛伊德算法求每一对顶点之间的最短路径的c语言实现。弗洛伊德算法采用图的带权邻接矩阵存储结构。算法基本思想:假设求顶点Vi到Vj的最短路径。弗洛伊德算法依次找从Vi到Vj,中间经过结点序号不大于0的最短路径,不大于1的最短路径,直到中间顶点序号不大于n-1的最短路径,从中选取最小值,即为Vi到Vj的最短路径。- Functionality of the code: Freud algorithm for each of the shortest path between ver
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:2.77kb
    • 提供者:Mei
  1. linwenzhong-Graphlnk

    0下载:
  2. 图的存储、遍历及其应用 掌握图的存储表示及基本操作的实现 , 掌握图的深度优先遍历和广度优先遍历的实现,图的邻接表表示,运用C++类实现图的类定义及基本操作算法。-Map storage, traversal and its application to master storage representation of the map and the realization of the basic operations, master graph depth-first travers
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:4.09kb
    • 提供者:林文众
  1. Topological-sort

    0下载:
  2. 代码的功能:用C语言仿真有向图的拓扑排序,代码中带有详细的注解,十分有利于阅读。拓扑排序算法是有向图的应用领域中的一种重要算法,阐述了AOV图的定义及拓扑排序算法思想。 -Functionality of the code: a directed graph topological sort in C language simulation code with detailed comments, very conducive to reading. The topological sort
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:3.63kb
    • 提供者:Mei
  1. 1

    0下载:
  2. 动态线性表数据结构,VC6.0,可直接编译使用-Dynamic linear list data structure, VC6.0, can be directly compiled with the
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:734byte
    • 提供者:赵行晟
« 1 2 ... .36 .37 .38 .39 .40 741.42 .43 .44 .45 .46 ... 2673 »
搜珍网 www.dssz.com