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

搜索资源列表

  1. Analog-queue-operations

    0下载:
  2. 该Java 小程序Applet 成功实现了对最多50 个元素的队列新建、产生随机序列、入 队、出队、元素查找、元素删除的功能,另外还加入了一个是否允许元素有相同值的功能, 成功的模拟了队列的各种操作。-The successful implementation of Java applets Applet for up to 50 elements in the new queue, resulting in random sequence, into the team, the tea
  3. 所属分类:Applet

    • 发布日期:2017-11-24
    • 文件大小:18078
    • 提供者:goendlesson
  1. basic-operation-queue

    0下载:
  2. 本实验的目的是让学生在理解队列的基本概念基础上,实现队列的基本操作-The purpose of this experiment is to let students realize the basic operation queue in basic concept on the basis of understanding the queue
  3. 所属分类:JavaScript

    • 发布日期:2017-11-13
    • 文件大小:3550
    • 提供者:丁亚男
  1. scheduleMonitor

    0下载:
  2. 监控调度任务单独执行与队列执行,此项目用到oracle数据库,需要在linux系统下执行,因为有的命令是调用linux系统的命令来执行的,比如杀死进程的命令。 可自定义单个定时任务,也可自定义多个任务队列顺序执行-Monitoring and dispatching tasks performed separately with the queue execution of this project uses oracle database, you need to run linux sy
  3. 所属分类:Java Develop

    • 发布日期:2017-12-06
    • 文件大小:23827701
    • 提供者:shaokang
  1. queue

    0下载:
  2. 数据结构中队列的java代码。实现了队列类的定义、队列的初始化、出队列的基本操作、入队列的基本操作、判断队列是否为空、判断队列的是否满、求取队列的长度、队列的清零与释放等功能。同时还详细定义了队列实现过程中元素节点的数据结构。节点数据的输入采用键盘输入,采用的是java.util.Scanner类中的方法。-Queue data structure java code. Implementation of the queue class definition, initialize the qu
  3. 所属分类:Java Develop

    • 发布日期:2017-11-15
    • 文件大小:927
    • 提供者:桂新全
  1. Using_Java_Queue

    0下载:
  2. 使用Java队列存储对象。 LinkedList创建队列。 offer()插入 poll()遍历并移除-Store objects in Java Queue Create Queue by LinkedList offer() to enqueue poll() to traverse and dequeue
  3. 所属分类:Java Develop

    • 发布日期:2017-04-06
    • 文件大小:881
    • 提供者:ppdouble
  1. time

    0下载:
  2. 用时间片轮转算法的进程调度程序,可以在界面设定的互斥资源(包括两种:输入设备与输出设备)的数目,进程数、进入内存时间、要求服务时间可以在界面上进行设定.采用可视化界面,可在进程调度过程中随时暂停调度,查看当前进程的状态以及相应的阻塞队列.-With a round-robin algorithm process scheduler, you can set the interface mutex resources (including two types: input devices and
  3. 所属分类:Java Develop

    • 发布日期:2017-05-16
    • 文件大小:3847365
    • 提供者:仪珂
  1. FifoQueue

    0下载:
  2. 用Java写一个先进先出(FIFO)的单向队列(queue)类FifoQ-Use Java to write a first in first out (FIFO) queue unidirectional (queue) class FifoQueue
  3. 所属分类:Applet

    • 发布日期:2017-03-24
    • 文件大小:692
    • 提供者:杨惠婷
  1. javaparase

    0下载:
  2. 一个java源代码包,其中包括快速排序,队列和后缀表达式的计算,XML生成程序,为一个解析XML文件程序做了书价格的计算,是后缀表达式计算,中缀转后缀.-A Java source code package, including quick sort, queues, and the calculation of postfix expression, XML generator, as a parse the XML file application to do the calculation
  3. 所属分类:Applet

    • 发布日期:2017-04-15
    • 文件大小:8574
    • 提供者:李阳
  1. Graph-traversal

    0下载:
  2. 图的遍历: (1)访问初始顶点v并标记顶点v已访问。 (2)查找顶点v的第一个邻接顶点w。 (3)若顶点v的邻接顶点w存在,则继续执行;否则回溯到v,再找v的另外一个未访问过的邻接点。 (4)若顶点w尚未被访问,则访问顶点w并标记顶点w为已访问。 (5)继续查找顶点w的下一个邻接顶点wi,如果v取值wi转到步骤(3)。直到连通图中所有顶点全部访问过为止。 (1)顶点v入队列。 (2)当队列非空时则继续执行,否则算法结束。 (3)
  3. 所属分类:WEB(ASP,PHP,...)

    • 发布日期:2017-04-08
    • 文件大小:2016
    • 提供者:ck
  1. huffman

    0下载:
  2. huffmanh编码 采用huffman树与队列结合的方法程序改自网上一个很好的源码,方法很好-huffmanh huffman coding methods and procedures using a combination of tree and queue a nice change from the online source, a very good method
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:2239
    • 提供者:kavein
  1. thread-pool

    0下载:
  2. java多线程编程,线程池的使用,ThreadPoolExecutor无界队列、有界队列的使用-The use of multiple threads in Java,the thread pool
  3. 所属分类:Java Develop

    • 发布日期:2017-04-16
    • 文件大小:26124
    • 提供者:王星
  1. stackaqueue

    0下载:
  2. java 实现的基础数据结构栈和队列,仅供有需要的同学参考-java code of stack and queue
  3. 所属分类:Applet

    • 发布日期:2017-04-17
    • 文件大小:18583
    • 提供者:Goose
  1. sort

    1下载:
  2. 利用队列实现对某一个数据序列的排序(采用基数排序)-Implementation of a data sequence sorting using the queue (by radix sort)
  3. 所属分类:JavaScript

    • 发布日期:2016-10-31
    • 文件大小:1024
    • 提供者:susan
  1. iSpacebot

    0下载:
  2. 基于Lego NXT机器人,实现自动循迹,蓝牙通信,保持队列等功能-Based on Lego NXT robots, automatic tracking, Bluetooth communication, and other functions to maintain the queue
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:7325
    • 提供者:Wang
  1. risenet-file

    0下载:
  2. 第三方初始化脚本,Google Gears和BrowserPlus运行时所需的时间 负载plupload和所有它的运行时和最终jQuery队列小部件 ReferenceError:plupload不是定义 显示了jQuery Plupload队列部件,其中每个单独运行时初始化,以便您可以看到您的浏览器目前支持-Thirdparty intialization scr ipts, needed for the Google Gears and BrowserPlus runtimes
  3. 所属分类:JavaScript

    • 发布日期:2017-05-15
    • 文件大小:3750100
    • 提供者:zhangyuan
  1. GrahpDFS

    0下载:
  2. 不使用递归算法,使用栈和队列,事项图的深度遍历-Graph DFS
  3. 所属分类:Java Develop

    • 发布日期:2017-04-07
    • 文件大小:11803
    • 提供者:郭欣宇
  1. HW01

    0下载:
  2. 实现AllTopSorts算法,双链表做bag,succ数组是数组队列,pre是记录前指针个数的数组。时间复杂度为常数。-Achieve AllTopSorts algorithm, double-linked list do bag, succ array is an array queue, pre array pointer before the number of records. The time complexity is constant.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-17
    • 文件大小:18612
    • 提供者:陈婧婧
  1. spring-jms-oracle-aq

    0下载:
  2. spring监听oracle AQ队列 Oracle AQ with Spring JMS ( Without Spring JDBC Extension )-Oracle AQ with Spring JMS ( Without Spring JDBC Extension )
  3. 所属分类:Java Develop

    • 发布日期:2017-03-26
    • 文件大小:12248
    • 提供者:baicaiyun
  1. 网页上传控件

    0下载:
  2. 给予js实现的控件,可实现网页上上传文件,使用jQuery.Uploadify插件实现上传,具有显示进度条,多文件同时上传、显示上传速度、取消上传队列、限制上传类型等功能
  3. 所属分类:WEB源码

  1. bankqueue

    0下载:
  2. 模仿一行调度系统的实现,采用优先队列的形式,事件处理-Achieve imitate line scheduling system, using a priority queue forms, event handling
  3. 所属分类:Jsp/Servlet

    • 发布日期:2017-04-15
    • 文件大小:8567
    • 提供者:洪子墨
« 1 2 3 4 5 6 7 89 10 »
搜珍网 www.dssz.com