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

资源列表

« 1 2 ... .04 .05 .06 .07 .08 2609.10 .11 .12 .13 .14 ... 2673 »
  1. IntroductionToAlgorithmsAnswersInChinese

    1下载:
  2. 算法导论习题中文解答,pdf格式,很详细-Introduction to Algorithms Problem Chinese answers
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:906664
    • 提供者:cononer
  1. a

    1下载:
  2. 这是一份数据结构课程设计报告,题目是哈夫曼树的编码及其应用。其中包含详细设计模块,源代码,程序运行结果截图等等。-This is a data structure course design report entitled Huffman coding tree and its application. Which contains the detailed design of the module, source code, screenshots, and so run the result
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:140836
    • 提供者:李捷
  1. acis

    1下载:
  2. ACIS是一个开放的、采用C++语言构造的三维造型开发系统, 其特点是将线框、曲面和实体造型融于一体, 并可以将这三种表示共存于一个数据结构中。目前, ACIS 广泛的运用于CAD、AEC、自动化技术和船舶制造等技术领域。-good
  3. 所属分类:Data structs

    • 发布日期:2016-01-25
    • 文件大小:256000
    • 提供者:师国静
  1. Merger

    1下载:
  2. 将两个有序的子文件R[low..m)和R[m+1..high]归并成一个有序的-The two ordered sub-file R [low .. m) and R [m+1 .. high] merged into an ordered
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1060
    • 提供者:李阳
  1. calculator

    1下载:
  2. 用栈的方法实现表达式求值,本人数据结构与算法作业,健壮性较好,考虑了多种出错处理-The method used to achieve the stack expression evaluation, data structures and algorithms I work, good robustness, consider a variety of error handling
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:290056
    • 提供者:木子
  1. vc-Huffman-encoding

    1下载:
  2. 这是一个关于哈弗曼编码的程序,里面包含了一些算法,对于哈弗曼编码理解非常有用!-this is a procedure about Huffman-encoding,some algorithm include!very useful for you to understand the Huffman-encoding!
  3. 所属分类:Data structs

    • 发布日期:2014-12-08
    • 文件大小:894976
    • 提供者:lianshao
  1. graphoperation

    1下载:
  2. 根据从键盘输入的数据创建图(图的存储结构可采用邻接矩阵或邻接表),并对图进行深度优先搜索和广度优先搜索(实验类型:验证型) 1)问题描述:在主程序中提供下列菜单: 1…图的建立 2…深度优先遍历图 3…广度优先遍历图 0…结束 2)实验要求:图的存储可采用邻接表或邻接矩阵;定义下列过程: CreateGraph(): 按从键盘的数据建立图 DFSGrahp():深度优先遍历图 BFSGrahp():广度优先遍历图-According to dat
  3. 所属分类:Data structs

    • 发布日期:2016-06-21
    • 文件大小:1024
    • 提供者:zf
  1. 2010110

    1下载:
  2. 1. 用类编写并测试3×3矩阵转置函数,并且使用数组保存转置后的矩阵,要求使用动态内存分配方法。P206,例题6-5,6-17,6-26,27-1. Written and tested with a class of 3 × 3 matrix transpose function, and after using the array containing the transposed matrix, requires the use of dynamic memory allocation.
  3. 所属分类:Data structs

    • 发布日期:2017-05-08
    • 文件大小:1915317
    • 提供者:小蔡
  1. basic_linux

    1下载:
  2. 编程实现快速排序算法;实现文本文件拷贝函数copy.编写一个程序,要求:输入N个学生学号和成绩,并保存在stu.txt文本文件中,学生成绩进行排序并把排序后的结果输出到score.txt文件中,同时在屏幕上输出高于平均成绩的学生的学号和成绩。编写一个程序找出串str1和串str2的所有最长公共子串。 -Fast sorting algorithm programming text file copy function to achieve copy. Write a program tha
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:2212
    • 提供者:
  1. main

    1下载:
  2. 1.实现线性表的链式存储结构——线性链表。从文件输入一批整数,建立有序链表(升序),并完成: • 查找一个指定元素 • 插入一个给定元素 • 删除一个指定元素 • 统计链表的长度 • 输出线性链表 • 实现安逆序链表的重建 2.采用链式结构实现任意多项式的存储,求两个多项式的和。 -1. The linear form of the linked storage structure- lin
  3. 所属分类:Data structs

    • 发布日期:2014-10-15
    • 文件大小:1024
    • 提供者:张晓敏
  1. taxis

    1下载:
  2. 多线程查看数据排序算法,查看各种算法的时间-Multi-threaded view data sorting algorithm, see all the algorithm' s time
  3. 所属分类:Data structs

    • 发布日期:2016-04-05
    • 文件大小:168960
    • 提供者:陈辉彬
  1. Singlelistofheoperation

    1下载:
  2. 随机产生或键盘输入一组元素,建立一个带头结点的单链表(无序)。 2.遍历单链表(即输出单链表中各结点元素)。 3.把单链表中元素逆置。 4.在单向链表中删除所有的偶数元素结点。 5.编写在非递减有序链表中插入一个元素使链表元素仍有序的函数,并利用该函数建立一个非递减有序单链表。 6.利用算法5建立两个非递减有序单链表,然后合并成一个非递减有序单链表。 -Randomly generated or keyboard input of a group of elem
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1260
    • 提供者:乔乔
« 1 2 ... .04 .05 .06 .07 .08 2609.10 .11 .12 .13 .14 ... 2673 »
搜珍网 www.dssz.com