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

搜索资源列表

  1. Mi_Gong

    0下载:
  2. 实现迷宫算法。处理数据可以达到1000*1000的标准-Maze algorithm implementation. Process the data can reach the standard 1000* 1000
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:170450
    • 提供者:各国
  1. Levelbinarytreetraversal

    0下载:
  2. 层次遍历二叉树,使用C++语言编写层次遍历二叉树的程序,数据结构的经典程序-Level binary tree traversal, using the C++ language-level binary tree traversal process, the data structure of the classic procedure
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1289
    • 提供者:lj
  1. duoxiangshixiangjia

    0下载:
  2. 程序的应用,求多项式的相加的算法,利用数据结构的思想。-The application process, find the sum of polynomial algorithms, data structures using the idea.
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:956
    • 提供者:panheng
  1. Stack

    0下载:
  2. 设计实现数据结构的栈队列顺序存储动画演示过程-Design and implementation of data structures stored in the stack order of animation process queue
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:41875
    • 提供者:yunfei
  1. chaoshixuanzhiwenti

    0下载:
  2. 对于某一学校超市,其他各单位到其的距离不同,同时各单位人员去超市的频度也不同。请为超市选址,要求实现总体最优。通过该题目的设计过程,可以加深理解图数据结构,掌握某些基本运算的实现,进一步理解和熟练掌握课本中所学的各种数据结构,学会如何把学到的知识用于解决实际问题,培养学生的动手能力。-For a school the supermarket, and other units to its distance from different units who go to the supermarke
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:7718
    • 提供者:王娟
  1. 2-2

    0下载:
  2. 求解Josephus问题的函数。用整数序列1, 2, 3, ……, n表示顺序围坐在圆桌周围的人,并采用数组表示作为求解过程中使用的数据结构。-Josephus problem solving functions. With a sequence of integers 1, 2, 3, ... ..., n that order around a round table around and use that as an array of data used in the process of
  3. 所属分类:Data structs

    • 发布日期:2017-05-09
    • 文件大小:2035317
    • 提供者:朱朱
  1. delete

    0下载:
  2. 数据结构。检查删除,一个链表。程序完整。-Data structure. Check to delete a linked list. Integrity of the process.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:609
    • 提供者:zrf
  1. xishujuzhenzhuanzhi

    0下载:
  2. 数据结构之稀疏矩阵的转至。程序完整有主程序。-The sparse matrix data structures go. Integrity of the process are the main program.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:671
    • 提供者:zrf
  1. Quick-Sort

    0下载:
  2. 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。 -Quick sort (Quicksort) is a bubble sort of an improvement. By the CAR Hoare in 1962. Th
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:730
    • 提供者:mfeng
  1. tu

    0下载:
  2. 遍历算法在数据结构中是最普通的运算方法也是所有其它算法的基础。由于图的遍历比线性表、树的结构的遍历算法要复杂,因此着重对图的遍历算法进行讨论, 具有更普遍的意义。图的遍历就是从图中指定的某顶点作为遍历的起始出发点, 按照一定搜索遍历路径, 对图中所有顶点仅作一次访问的过程。 根据搜索路径方向的不同, 遍历图的方法可分深度优先搜索遍历和广度优先搜索遍历, 又根据编制算法的方法不同, 可分为递归遍历算法和非递归遍历算法。 -Data structure traversal algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:229036
    • 提供者:庄小虎
  1. car

    0下载:
  2. 数据结构学习源码,使用队列结构,经过调试运行通过的C++程序-Learning source data structure, use the queue structure, through the commissioning process through the C++
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:2803
    • 提供者:gv
  1. finding

    0下载:
  2. 折半查找的算法思想是将数列按有序化(递增或递减)排列,查找过程中采用跳跃式方式查找,即先以有序数列的中点位置为比较对象,如果要找的元素值小于该中点元素,则将待查序列缩小为左半部分,否则为右半部分。通过一次比较,将查找区间缩小一半。 折半查找是一种高效的查找方法。它可以明显减少比较次数,提高查找效率。但是,折半查找的先决条件是查找表中的数据元素必须有序。 -Binary search algorithm idea is to sequence by ordering (ascending or
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:784
    • 提供者:zn
  1. memory--recycling-experiments

    1下载:
  2. 熟悉主存的分配与回收。理解在不同的存储管理方式下,如何实现主存空间的分配与回收。掌握动态分区分配方式中的数据结构和分配算法及动态分区存储管理方式及其实现过程-Familiar with the main memory allocation and recovery. Understanding of storage management in a different way, how to achieve the main memory space allocation and recyclin
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:439184
    • 提供者:xiaoxiao
  1. Bankers-Algorithm

    0下载:
  2. 银行家算法是一种最有代表性的避免死锁的算法。在避免死锁方法中允许进程动态地申请资源,但系统在进行资源分配之前,应先计算此次分配资源的安全性,若分配不会导致系统进入不安全状态,则分配,否则等待。为实现银行家算法,系统必须设置若干数据结构。-Banker' s algorithm is one of the most representative algorithm to avoid deadlock. Method to avoid deadlock in the process of dy
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1430
    • 提供者:岳豪
  1. multi

    0下载:
  2. 利用多线程技术实现快速和冒泡两个排序算法,每个算法一个线程,直观地显示排序算法对输入数据的排序过程。-Using multi-thread technology for fast and bubbling two sorting algorithms, each algorithm is a thread, visual indication of the input data sorting algorithm sorting process.
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1291
    • 提供者:ZKY
  1. lift

    0下载:
  2. 本程序用为数据结构课程设计中的电梯模拟程序,编写时考虑周到,在满足题目的基本要求下,功能更为完善 PS:内附详解报告,解释流程,原理及用法-Used as a data structure of the program curriculum design in the elevator simulation program to consider thoughtful preparation, to meet the basic requirements of the subject, th
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:378804
    • 提供者:xiao ru
  1. library-management

    0下载:
  2. 本程序用C语言编写,为数据结构课程设计中的图书馆管理系统程序,编写时考虑周到,在满足题目的基本要求下,功能更为完善 PS:内附详解报告,解释流程,原理及用法-This procedure using C language, data structure, curriculum design for the library management system in the process, the time of writing thoughtful, to meet the basic re
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:664014
    • 提供者:xiao ru
  1. 6

    0下载:
  2. 1.定义哈希表数据结构。 2.除留余数法做为哈希函数、 H(key) = key P 用线性探测再散列解决冲突方法,编写函数,实现哈希造表的过程,并输出哈希表。 3.编写函数,求查找成功时的平均查找长度(ASL)。-1. Define the hash table data structure. 2. In addition to leaving the remainder as the hash function method, H (key) = key P re-ha
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:719
    • 提供者:finejade
  1. BinaryTree

    0下载:
  2. 学习数据结构时的程序,有关二叉树的创建和一些其他的操作-Learning process when the data structure, the binary tree creation and operation of some other
  3. 所属分类:Data structs

    • 发布日期:2017-04-23
    • 文件大小:115256
    • 提供者:
  1. HuffmanCoding

    0下载:
  2. 哈夫曼编码的程序,学习数据结构时做的程序-Huffman coding process, learning to do the procedure when the data structure
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:282161
    • 提供者:
« 1 2 3 4 5 67 8 9 10 »
搜珍网 www.dssz.com