CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 数组 队列

搜索资源列表

  1. maze

    0下载:
  2. 根据图的广度优先搜索算法,用数组模拟队列处理的迷宫问题。-According to the graph breadth-first search algorithm queue processing using an array of simulated maze.
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:173131
    • 提供者:
  1. Data-structure

    0下载:
  2. 这是我们老师上课讲的课件PPT,因老师讲得很好,想上传给大家共享。包括线性表,栈和队列,数组与广义表,树和二叉树,图。查找。排序等内容。-This is our teacher in the class speak courseware PPT as teacher put it very well, and want to upload to share. Including linear tables, stacks and queues, arrays, and generalized t
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1217835
    • 提供者:刘静
  1. queue

    0下载:
  2. 一个简单的队列C++代码实现,该队列使用数组的实现形式-A simple queue C++ code implementation, the queue using an array of forms
  3. 所属分类:Data structs

    • 发布日期:2017-03-25
    • 文件大小:889868
    • 提供者:王浩
  1. data-structures-of-C-

    0下载:
  2. 常用的数据结构 数组 表 队列 图 树等相关数据结构的C语言实-C language implementation of a common data structure array table queue graph tree data structures
  3. 所属分类:Data structs

    • 发布日期:2017-05-11
    • 文件大小:2695586
    • 提供者:杨兴文
  1. management-of-process

    0下载:
  2. 综合应用下列知识点设计并实现操作系统的进程调度:邻接表,布尔数组,非阻塞输入,图形用户界面GUI,进程控制块,进程状态转换,多级反馈队列进程调度算法。-Comprehensive application of the following knowledge points and the process scheduler of the operating system : the adjacency table , Boolean array , non-blocking input , gra
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:47762
    • 提供者:Poline
  1. datastruc

    0下载:
  2. 数据结构,包括蟾宫各种队列,链表、数组等的构建代码-Data structure, the various queues, linked lists Building code
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:92544
    • 提供者:shufy
  1. polynomial

    0下载:
  2. 链式队列是不同于循环数组的另一种队列的实现形式。队列中的元素以Node形式存储。节点Node中存有此节点存于队列中的元素以及指向下一个元素的指针。链式队列的需要保存指向队头和队尾的指针的数据成员。 -Chain queue is different from the circular array queue forms. Elements in the queue to the Node form of storage. Stored in the node Node element of th
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:843027
    • 提供者:叶江楠
  1. 10-classical-algorithm-books

    0下载:
  2. 是不经典的算法书籍,包括《算法导论》,《信息检索:数据结构与算法》、《从数组到优先级队列》。以及其他书籍-10 classical algorithm, Including "Introduction to Algorithms", "Fundamentals of Data Structures", "Information Retrieval: Data Structures & Algorithms "And other classic books
  3. 所属分类:Data structs

    • 发布日期:2017-06-19
    • 文件大小:29000946
    • 提供者:林真神
  1. bianli

    0下载:
  2. 图的深度及广度遍历 首先创建一个无向图,顶点用一个一维数组存储,弧用一个二维数组存储,不相邻顶点之间设置无限大。深度遍历时设置顶点的布尔函数,访问过的顶点布尔值为true,递归调用DFS函数。广度遍历时,结合队列的存储方式,进行遍历。-Figure traverse the depth and breadth of First create a non-directed graph, vertex with a one-dimensional array to store the arc w
  3. 所属分类:Document

    • 发布日期:2017-04-02
    • 文件大小:7880
    • 提供者:周天行
  1. datastruct

    0下载:
  2. 自己写的程序,分别用C++和C实现的数据基本结构包括数组,链表,栈和队列,已经过测试,里面有详细的注释,希望与大家分享!-Write their own programs, basic data structures, including arrays, linked lists, stacks and queues respectively implemented in C++ and C, have been tested, there are detailed notes, I hope
  3. 所属分类:Data structs

    • 发布日期:2017-11-20
    • 文件大小:2506191
    • 提供者:
  1. push

    0下载:
  2. 用数组实现栈和队列C++ 代码实现,经典-array stack c++
  3. 所属分类:Data structs

    • 发布日期:2017-12-07
    • 文件大小:686
    • 提供者:chensonghai
  1. zuoye3_1

    0下载:
  2. 1. 所谓双端队列(double-ended queue,deque),就是在列表的两端都可以插入和删除数据。因此它允许的操作有Create、IsEmpty、IsFull、Left、Right、AddLeft、AddRight、DeleteLeft、DeleteRight。使用循环数组方式实现双端队列,要求实现上述操作,并实现一个Print输出操作,能将队列由左至右的次序输出于一行,元素间用空格间隔。队列元素类型设为整型。-Called deque (double-ended queue, de
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-01
    • 文件大小:2424
    • 提供者:张蕊
  1. java-Using-Array-for-Queue

    0下载:
  2. 用java语言中的数组来实现队列,其中扩容方法为在原数组的基础上乘以2,另外也测试了用java中Vector类实现队列。-Array using java language java Vector class queue queue, which expansion method is superior to the original array 2, is also tested.
  3. 所属分类:Home Personal application

    • 发布日期:2017-11-06
    • 文件大小:2753
    • 提供者:刘昭强
  1. queue

    0下载:
  2. 1.利用数组实现优先队列; 2.利用链表实现优先队列; (注:默认以最大值为优先级最高,思考:如何实现用户指定优先级(最大优先或最小优先)) -Using an array of priority queues using a linked list priority queue (Note: The default maximum value for the highest priority, thinking: how to implement user-specified
  3. 所属分类:software engineering

    • 发布日期:2017-11-18
    • 文件大小:72128
    • 提供者:丹枫晓晓
  1. rice

    0下载:
  2. 首先进行边缘检测,然后进行填充。然后进行开运算,可以使一些轻微连着的米粒分开来。然后是遍历图片,把各米粒进行标号,从1开始从小到大标号。每个米粒的各像素点值相同,第i个米粒的各像素点值均为i。其中采用了队列,用数组模拟。最大的米粒标号便是米粒的总个数。最后,遍历一遍图像数组,便可求出各米粒的面积。-First, edge detection, and then filled. Then open computing can make some minor attached rice grains
  3. 所属分类:Special Effects

    • 发布日期:2017-11-13
    • 文件大小:8192
    • 提供者:李大齐
  1. Path

    0下载:
  2. 使用顺序队列求迷宫的最短路径。move[]数组四个方向的试探,第一行输入的数据表示迷宫的数据规模n(1<n<=20)行m(1<m<=20)列,S是出发点,D是迷宫的出口,.号表示通路,X表示墙体不通,输出的数据表示从入口到出口最少需要走k步或没有通路-Use the order of the queue and maze shortest path. move [] array of four directions of temptation, the first lin
  3. 所属分类:Data structs

    • 发布日期:2017-12-03
    • 文件大小:3655389
    • 提供者:Tracy
  1. 1

    0下载:
  2. 数据结构中对数值进行表示和用数组对对战和队列进行表示-Said, and with an array of values ​ ​ in the data structure expressed Battle and queue
  3. 所属分类:Data structs

    • 发布日期:2017-12-01
    • 文件大小:4559
    • 提供者:黄谭
  1. clsArray

    1下载:
  2. VB里面没有类似C++的队列的类,本源码在VB上实现了一个动态数组,可以自由添加数组元素,获取数组成员个数-VB there is no class of similar C++ queue, this source code in VB to achieve a dynamic array, the array elements can freely add, for the number of array members
  3. 所属分类:Other systems

    • 发布日期:2017-11-14
    • 文件大小:1198
    • 提供者:周振宇
  1. 2

    0下载:
  2. 掌握二叉树的链式和顺序存储结构,利用队列对二叉树进行运算。 二、实验内容: 1) 编写函数creatbt,其功能是将一维数组方式存储的二 叉树转化为链式存储的二叉树,返回root指针。 2) 编写函数freebt,其功能是释放二叉树链表节点的存储 空间。函数原型为:void freebt (TNODE * root) 3) 编写函数实现前序、中序和后序遍历; -Master chain and sequential storage structure of the binar
  3. 所属分类:Algorithm

    • 发布日期:2017-11-20
    • 文件大小:1221
    • 提供者:me20082010
  1. ddeque

    0下载:
  2. 双端队列,两种方法实现,1种是数组,一种是vc里自带的容器,增长方向为对向增长-double deque
  3. 所属分类:Data structs

    • 发布日期:2017-11-15
    • 文件大小:3691132
    • 提供者:范桥青
« 1 2 3 4 56 7 »
搜珍网 www.dssz.com