CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 文档资料 搜索资源 - queue

搜索资源列表

  1. tingchechang

    0下载:
  2. 从终端读入汽车到达或离去的数据,每组数据包括两项:①是“到达”还是“离去”;②汽车牌照号码。与每组输入信息相应的输出信息为:如果是到达的车辆,则输出其在停车场中或便道上的位置,并输出停车场中现有汽车车牌号码;如果是离去的车辆,安排在便道中等候的车辆进入停车场,输出停车场中汽车车牌号码。-Car park management data structure of the application stack and queue issues dual stack parking lot paveme
  3. 所属分类:Project Design

    • 发布日期:2017-11-25
    • 文件大小:2128
    • 提供者:menyumin
  1. 2

    0下载:
  2. design active queue management for router
  3. 所属分类:Development Research

    • 发布日期:2017-12-04
    • 文件大小:390649
    • 提供者:KARAM samir
  1. ns2aodv

    0下载:
  2. NS (Version 2) is an open source network simulation tool. It is an object oriented, discrete event driven simulator written in C++ and Otcl. The primary use of NS is in network researches to simulate various types of wired/wireless local and wide are
  3. 所属分类:software engineering

    • 发布日期:2017-11-08
    • 文件大小:536481
    • 提供者:mahadev gawas
  1. example1b

    0下载:
  2. Tcl scr ipt for ns which simulates a simple topology learn how to set up nodes and links, how to send data from one node to another, how to monitor a queue and how to start nam from your simulation scr ipt to visualize your simulation.
  3. 所属分类:software engineering

    • 发布日期:2017-11-11
    • 文件大小:636
    • 提供者:ajeet
  1. CircleBuffer

    0下载:
  2. 模板类名:CircleBuffer 功 能:环形缓冲区 优 点:相对于队列来说减少了很多对地址的反复操作,增加稳定性。-Template class name: CircleBuffer function: the ring buffer Pros: relative to the queue for reduced many repeated operation of the address, to increase stability.
  3. 所属分类:software engineering

    • 发布日期:2017-11-16
    • 文件大小:1732
    • 提供者:谷蒙
  1. 4

    0下载:
  2. 针对目前图形处理器(GPU) 上的动态数据处理问题,在分析现有并行单源最短路径(SSSP) 算法的基础上,对 GPU上的Moore SSSP算法进行并行化设计与实现。搜索时,综合应用层次化任务分配、层次化工作队列、层次化 Kernel 调用等策略。在不同类型图数据上进行实验测试,实验结果表明,该算法能有效减少空线程开销、访存开销以及同步时间。-For dynamic data processing on the graphics processor (GPU), the analysis of
  3. 所属分类:Project Design

    • 发布日期:2017-12-04
    • 文件大小:1076435
    • 提供者:JIANGLILY
  1. Lecture_07-(Queues)

    0下载:
  2. The queue structure is a simple structure like the stack. The difference from the stack is that the first elements to enter the queue get processed first. That is, service requests get added to the end of the list. That is why, it is also defined
  3. 所属分类:software engineering

    • 发布日期:2017-11-26
    • 文件大小:346964
    • 提供者:Nameless
  1. some

    0下载:
  2. 用c语言编程实现在链队列中实现入队和出对的操作-C programming language in the chain queue into the team and on the operation
  3. 所属分类:software engineering

    • 发布日期:2017-11-18
    • 文件大小:747
    • 提供者:廖裕宙
  1. zuoyediaodu

    0下载:
  2. 进程调度是处理机管理的核心内容。本实验要求用C语言编写和调试一个简单的进程调度程序。通过本实验可以加深理解有关进程控制块、进程队列的概念,并体会和了解优先数和时间片轮转调度算法的具体实施办法。-Process scheduling is the core content of the processor management. The experiment called the C language to write and debug a simple process scheduler. T
  3. 所属分类:Communication

    • 发布日期:2017-11-23
    • 文件大小:33187
    • 提供者:付柄银
  1. Dijksta-algorithm

    0下载:
  2. 提出一种新型的Dijkstra改进算法,具有高效性.其改进分3个方面:采用邻接表作为道路网络拓扑的存储结构;利用二叉堆实现优先队列;根据节点的分布情况将搜索过程分为几个阶段,引入了动态限制搜索区域机制.最后在实际道路网络中的测试及仿真结果表明了改进算法的可行性和优越性. -Dijkstra proposes a new improved algorithm with high efficiency. Improved three aspects: the adjacent table as th
  3. 所属分类:Document

    • 发布日期:2017-11-29
    • 文件大小:313854
    • 提供者:请问
  1. arm-for-ucos-study1

    0下载:
  2. this is collection of book for u cos to understand the concept of message queue
  3. 所属分类:software engineering

    • 发布日期:2017-11-19
    • 文件大小:774393
    • 提供者:sagar
  1. 3

    0下载:
  2. 对一篇由英文字母、空格、标点符号构成的文档,进行Huffman编码 数据输入: 由文件input.txt给出输入数据。 输入文件示例 input.txt A priority queue is a queue where each element has a priority and the element with the highest priority is at the front of the queue and will be the first elemen
  3. 所属分类:software engineering

    • 发布日期:2017-11-30
    • 文件大小:259114
    • 提供者:miyor
  1. FIFO-algorithm

    0下载:
  2. 先入先出队列,这是一种传统的按序执行方法,先进入的指令先完成并引退,跟着才执行第二条指令。是一种先进先出的数据缓存器,他与普通存储器的区别是没有外部读写地址线,这样使用起来非常简单,但缺点就是只能顺序写入数据,顺序的读出数据,其数据地址由内部读写指针自动加1完成,不能像普通存储器那样可以由地址线决定读取或写入某个指定的地址-First-in, first-out queue, which is a traditional sequential execution method, first en
  3. 所属分类:software engineering

    • 发布日期:2017-11-10
    • 文件大小:1326
    • 提供者:路子祥
  1. DST_LabManual8

    0下载:
  2. circular array implementation of q-circular array implementation of queue
  3. 所属分类:software engineering

    • 发布日期:2017-12-04
    • 文件大小:214533
    • 提供者:Omer
  1. Ticket-Sale-of-Airplane-System

    0下载:
  2. 一个飞机售票系统,用QT平台编译,GUI界面,很不错,用队列完成数据保存和操作。-An airplane ticket system, using QT platform compiler, GUI interface, very good, with complete data retention and queue operations.
  3. 所属分类:software engineering

    • 发布日期:2017-05-04
    • 文件大小:1028395
    • 提供者:梁兴
  1. main

    0下载:
  2. simulator for m m k queue . with function for lamda
  3. 所属分类:Project Manage

    • 发布日期:2017-04-06
    • 文件大小:1884
    • 提供者:emil
  1. NVME

    0下载:
  2. • Queues allocated per core via local memory • IOs submitted on optimal queue for CPU • MSIX vectors mapped to NUMA optimized Queue pair ‘All or Nothing’ optimization, each core gets a queue and a vector or driver reverts to singe queue pair
  3. 所属分类:技术管理

  1. retrial queues

    0下载:
  2. In this paper, we reconsider a retrial queue with a number of servers and impatient customers. We improve the computation of the rate matrix, the conditional mean number of customers, the unknowns and the estimation of threshold N , which leads to th
  3. 所属分类:其它文档

    • 发布日期:2014-03-02
    • 文件大小:211593
    • 提供者:congtonkieu
  1. Code

    0下载:
  2. SIMULATION OF NETWORK TOPOLOGY USING NS2 Consider the network where T1-T6 are transmitters and R1-R6 are receivers. R1 receives from T1, R2 receives from T2 and so on. B1,B2 and B3 act as bottleneck nodes and also provide for routing of packets
  3. 所属分类:Project Design

    • 发布日期:2017-04-16
    • 文件大小:125711
    • 提供者:sac kaus
  1. Heaps

    0下载:
  2. Many applications require that we process records with keys in order, but not necessarily in full sorted order. Often we collect a set of items and process the one with the current minimum value. e.g. jobs sent to a printer, Operating system j
  3. 所属分类:software engineering

    • 发布日期:2017-05-03
    • 文件大小:611592
    • 提供者:ashlafir
« 1 2 3 4 56 7 »
搜珍网 www.dssz.com