CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 源码下载

资源列表

« 1 2 ... .65 .66 .67 .68 .69 9070.71 .72 .73 .74 .75 ... 199241 »
  1. tuopuguanxi

    1下载:
  2. 拓扑关系的自动生成算法,是以C++语言为基础的代码,-tuopu
  3. 所属分类:Data structs

    • 发布日期:2017-05-08
    • 文件大小:1.69mb
    • 提供者:mrkaval
  1. minmax

    1下载:
  2. 極小極大搜尋法附註解,可以應用在各種遊戲樹上,更進階的是使用alpha_beta去剪枝-Note Minimax search solutions can be applied in a variety of game tree, the more advanced is the use of alpha_beta to prune
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:1.39kb
    • 提供者:12345
  1. Data_Structure_Guid_in_your_compus

    1下载:
  2. 数据结构 校园导游系统 这是针对清华大学的严蔚敏数据结构书的 恩恩 你们懂得-Campus tour guide system data structure
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:2.28kb
    • 提供者:schnappi
  1. sort_algorithm

    1下载:
  2. 随机产生一组m到n之间的一组整数,对这一组整数编写常用的排序函数:直接插入排序、冒泡排序、快速排序、堆排序、归并排序。-Randomly generated between a set of m to a set of n integer, often used for the preparation of this group of integer sorting function: direct insertion sort, bubble sort, quick sort, heap so
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:5.27kb
    • 提供者:tang
  1. NOIP_ACM_Contest

    1下载:
  2. 数据结构和算法讲解,里面有NOIP,ACM竞赛的老师PPT和某个专业方面的深层次了解。里面的有些算法研究的相当深入,值得深入学习。-Explain data structures and algorithms, which has NOIP, ACM contest PPT and a professional teacher' s deep understanding. There' s some pretty in-depth study of algorithms, it is
  3. 所属分类:Data structs

    • 发布日期:2017-06-01
    • 文件大小:13.48mb
    • 提供者:Silicon
  1. sashujiecheng

    1下载:
  2. 用链表实现的大数阶乘,效率并不是很高,但是应该对初学者很有帮助。这是我们的实习作业,希望能够给人以参考-Factorial of large numbers with the list to achieve efficiency is not very high, but should be helpful for beginners. This is our practical work, hoping to give a reference
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:276.88kb
    • 提供者:yinquanchao
  1. zuiduanlujin

    1下载:
  2. 利用邻接矩阵构造图,并求出某一顶点到其余顶点的最短路径并打印输出。-Using the adjacency matrix structure maps, and find the rest of the vertices of a vertex to the shortest path and print output.
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1.55kb
    • 提供者:吴芳
  1. mafuman

    1下载:
  2. 数据结构 哈夫曼编码译码和迷宫 完整代码 课设报告-Huffman coding and decoding data structures and labyrinth design report complete code class
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:504.63kb
    • 提供者:houting
  1. tree

    1下载:
  2. 1 建立二叉树 1)通过输入树的嵌套括号表示序列 2)根据前序遍历序列和中序遍历序列建立二叉树 3)建立哈夫曼树 2. 对于1中1),2)所建立的树进行如下操作: 1)查找结点 2)前序遍历 3)中序遍历 3 对于建立的哈夫曼树进行编码 4 输出二叉树的形状-1 Create a binary 1) by entering the sequence of the tree of nested brackets 2) According to the preorder traversal sequ
  3. 所属分类:Data structs

    • 发布日期:2015-01-05
    • 文件大小:3kb
    • 提供者:leik
  1. kuaipai

    1下载:
  2. 1. 按下述原则编写快排的非递归算法: (1)一趟排序之后,若子序列已有序(无交换),则不参加排序,否则先对长度较短的子序列进行排序,且将另一子序列的上、下界入栈保存; (2)若待排记录数?3,则不再进行分割,而是直接进行比较排序。 测试实例:{49 38 65 97 76 13 27 49 88 21 105} -1. Prepared by the following principles of non-recursive algorithm for fast row:
  3. 所属分类:Data structs

    • 发布日期:2014-10-30
    • 文件大小:1kb
    • 提供者:zhongkeli
  1. queue

    1下载:
  2. (一)题目: 假设以带头结点的循环链表表示队列,并且只设一个指针指向队尾元素结点而不设头指针,试编写相应的队列初始化、入队列、出队列和判断队列状态的算法。  利用上述算法完成下面的各操作,并在每一操作后输出队列状态。  1)下列元素逐一入队:5,7,3,8,55 状态:5个元素  2) 3个元素出队    状态:2个元素 3)再2个元素出队  状态:队空  4)再1个元素出队  状态:队空(指示下溢) -(A) Title: Suppose to take the l
  3. 所属分类:Data structs

    • 发布日期:2014-12-20
    • 文件大小:1kb
    • 提供者:zhongkeli
  1. yudaoq

    1下载:
  2. 查找、排序的应用实验1) 顺序查找; 2) 分别使用直接插入排序、冒泡排序、快速排序对原纪录序列进行排序,并显示排序结果; 3) 对上述纪录列表排好序,然后对其进行折半查找; 4) 利用原纪录序列建立一颗二叉排序树,并在其上实现特定关键字值结点的查找; 5) 按照“除留余数法”哈希构造函数和线性探测再散列的冲突处理方法创建表长为m=11的哈希表; 6) 实现5)创建哈希表上的查找。 -Find, Sequencing Experiment 1) sequential se
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:2.97kb
    • 提供者:张强
« 1 2 ... .65 .66 .67 .68 .69 9070.71 .72 .73 .74 .75 ... 199241 »
搜珍网 www.dssz.com