CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 搜索资源 - queues

搜索资源列表

  1. ucos_Demo

    0下载:
  2. ucosDEMO程序,可以模拟实现任务管理,优先级反转,内存管理,消息队列,时钟中断等-ucosDEMO procedures, can simulate the realization of task management, priority inversion, memory management, message queues, such as clock interrupt
  3. 所属分类:MacOS develop

    • 发布日期:2017-03-30
    • 文件大小:15155
    • 提供者:卢松柏
  1. duilie

    0下载:
  2. 本程序为循环队列的实现,比较低级的实现。-This procedure for the realization of the cycle queues, the realization of relatively low-level.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-02
    • 文件大小:910
    • 提供者:beryl
  1. CPP123

    0下载:
  2. C/C++ 语言参考 基本C/C++ 预处理命令 操作符优先级 转义字符 ASCII码表 基本数据类型 关键字 标准 C 库: Standard C I/O Standard C String & Character Standard C Math Standard C Time & Date Standard C Memory Other standard C functions C++ C++ I/O
  3. 所属分类:source in ebook

    • 发布日期:2017-03-25
    • 文件大小:118286
    • 提供者:李四
  1. nachos_2

    0下载:
  2. nachos实验2代码,实验有界缓冲区,table,还有安全队列,同步机制等-nachos experiment 2 code, experimental bounded buffer, table, there are security queues, synchronization mechanisms
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:20971
    • 提供者:huang
  1. 1

    0下载:
  2. 提供了一个实时操作系统Threadx在VC++上的一个开发环境,可以在上边使用Threadx的操作,同时对互斥量,信号量,消息队列,定时器,地址池等做了程序一边学习,是学习Threadx必备的-Provides a real-time operating system Threadx in VC++ on a development environment, can be on top so Threadx operation, while the amount of the mutex, se
  3. 所属分类:OS Develop

    • 发布日期:2017-05-06
    • 文件大小:1306554
    • 提供者:zhang hao
  1. AirportSimSource

    0下载:
  2. a solution for airport problem by delphi 7.0 is tested . 4 band. any planet . Queues Technology .-a solution for airport problem by delphi 7.0 is tested . 4 band. any planet . Queues Technology .
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-06
    • 文件大小:6912
    • 提供者:mostafa
  1. NSS

    0下载:
  2. 封装了Linux内核开发中的一些重要数据结构,包括队列、哈希表等,以及一些网络函数和多线程互斥机制-Encapsulates some of the important data structures in the Linux kernel developers, including queues, hash tables, etc., as well as some network functions and multi-threaded mutex mechanism
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:17532
    • 提供者:李顶
  1. BuffNoDataLoss

    0下载:
  2. labwindows cvi 多线程编程实例,安全队列,希望对大家有所帮助-labwindows cvi multi-threaded programming examples, security queues, we hope to help
  3. 所属分类:LabView编程

    • 发布日期:2017-04-02
    • 文件大小:185121
    • 提供者:mars
  1. tingchechang

    0下载:
  2. 以栈模拟停车场,以队列模拟车场外的便道,按照从终端读入的输入数据序列进行模拟管理。每一组输入数据包括三个数据项:汽车“到达”或“离去”信息、汽车牌照号码以及到达或离去的时刻。对每一组输入数据进行操作后的输出信息为:若是车辆到达,则输出汽车在停车场内或便道上的停车位置;若是车辆离去,则输出汽车在停车场内停留的时间和应交纳的费用(在便道上停留的时间不收费)。栈以顺序结构实现,队列以链表结构实现。-Stack mimics the parking to the queue simulation car
  3. 所属分类:assembly language

    • 发布日期:2017-12-07
    • 文件大小:2812
    • 提供者:伊伊
  1. UCOSIImessage-queue-semaphore

    0下载:
  2. 实验3-消息队列、信号量集和软件定时器的相关实验-Experiment 3- message queues, semaphore sets and software timer experimental
  3. 所属分类:OS Develop

    • 发布日期:2017-11-23
    • 文件大小:340992
    • 提供者:孔范升
  1. 4-1

    0下载:
  2. 通过上机对队列的基本操作的调试和调用来掌握顺序循环队列的操作-Mastered the operation of the order cycle queue on machine debugging and call queues basic operation
  3. 所属分类:assembly language

    • 发布日期:2017-11-11
    • 文件大小:743
    • 提供者:wangyuxi
  1. linkqueue

    0下载:
  2. 链式队列是一种特殊的线性表,它只允许在表的前端(front)进行删除操作,而在表的后端(rear)进行插入操作。进行插入操作的端称为队尾,进行删除操作的端称为队头。队列中没有元素时,称为空队列。一般队列的存储结构是顺序存储,当队列的存储结构是链式存储结构时(即队列中每个元素都包含一个指向其后继的指针,最后一个元素指针为null),就是链式队列,和链栈同理。-A queue is a special kind of linear form, it only allows the front end
  3. 所属分类:source in ebook

    • 发布日期:2017-11-16
    • 文件大小:784
    • 提供者:uname
  1. seqlist

    0下载:
  2. 结构线性表是一种常用的数据结构,以下介绍线性表及其顺序存储,并对栈和队列及它们的顺序实现给出了详细的设计描述。-Linear table structure is a common data structure, the following describes the linear form and stored in order, and stacks and queues and their sequential implementation gives a detailed design
  3. 所属分类:source in ebook

    • 发布日期:2017-11-27
    • 文件大小:1461
    • 提供者:uname
  1. D2

    1下载:
  2. 自行编写链式存储队列的基本运算子程序(名称不变) 实现以下功能: ①创建一个空的链式队列; ②判断新建的链式队列是否为空; ③提示用户输入“链式队列的长度”; ④根据用户输入的“链式队列的长度”,逐一提示 用户输入“链式队列中的各个元素”,完成链式 队列的构造; ⑤判断此时的链式队列是否为空; ⑥调用子程序打印当前链式队列的队首元素和队尾 元素; ⑦编写打印链式队列元素的子程序PrintNode( ); ⑧清空队列,连续3次做下列操作:入队4个元素
  3. 所属分类:assembly language

    • 发布日期:2014-06-08
    • 文件大小:1024
    • 提供者:赵康州
  1. 1223213

    0下载:
  2. 这个程序演示利用队列来实现数据的传引用,利用了队列的特性-This program demonstrates the use of queues to achieve data transfer references, the use of the characteristics of the queue
  3. 所属分类:LabView

    • 发布日期:2017-04-16
    • 文件大小:55087
    • 提供者:任玉凯
  1. data-transmission-queue

    0下载:
  2. 实现:这个程序演示利用队列来实现数据的传引用,labview对数据的处理-Implementation: This program demonstrates the use of queues to achieve data transfer quote, labview for data processing
  3. 所属分类:LabView

    • 发布日期:2017-04-16
    • 文件大小:55271
    • 提供者:lijinke
  1. dianlu

    1下载:
  2. 电路布线问题 【问题描述】 印刷电路板将布线区域划分为n╳n个方格阵列。在布线时,电路只能沿直线或直角布线。为避免线路相交,已布线的方格要做封锁标记。设起始位置为a,终止位置为b,求解电路布线问题。 【设计要求】 设计印刷电路板的布线模拟程序。 (1)采用栈或队列等数据结构。 (2)采用穷举法的回溯搜索,求a到b可能的布线线路。 (3)推荐采用层次优先搜索,求a到b最优的布线线路。 -Circuit wiring problem [Problem Descr ip
  3. 所属分类:assembly language

    • 发布日期:2016-05-25
    • 文件大小:37888
    • 提供者:张小红
  1. Untitled1

    0下载:
  2. 马踏棋盘,经典算法,是数据结构的C语言版,用栈和队列来实现-Is the data structure of the C language version, with stacks and queues to achieve
  3. 所属分类:source in ebook

    • 发布日期:2017-04-11
    • 文件大小:721
    • 提供者:GG
  1. ProducerConsumerData-(Multiple-Queues)

    0下载:
  2. Producer Consumer topology using multipl queues
  3. 所属分类:LabView

    • 发布日期:2017-05-04
    • 文件大小:22062
    • 提供者:Saad
  1. Queues vs Local Variables

    0下载:
  2. Queues labview core 2
  3. 所属分类:LabView编程

    • 发布日期:2018-04-28
    • 文件大小:20480
    • 提供者:grafovsky
« 12 »
搜珍网 www.dssz.com