搜索资源列表
Mathshandbook
- 此程序在K6II350,TC2.0环境下通过翻译、运行。 演示了五个优先级队列,时间片分别为8、16、32、64,128。 -K6II350 in this procedure, WITH TC 2.0 environment through an interpreter, run. Demonstration of five priority queues, time-were 8,16,32,64,128.
kaoyanwords
- 此程序在K6II350,TC2.0环境下通过翻译、运行。 演示了五个优先级队列,时间片分别为8、16、32、64,128。 -K6II350 in this procedure, WITH TC 2.0 environment through an interpreter, run. Demonstration of five priority queues, time-were 8,16,32,64,128.
05wendenganswer
- 此程序在K6II350,TC2.0环境下通过翻译、运行。 演示了五个优先级队列,时间片分别为8、16、32、64,128。 -K6II350 in this procedure, WITH TC 2.0 environment through an interpreter, run. Demonstration of five priority queues, time-were 8,16,32,64,128.
zuoyediandu
- 自己业余编写的 编制一个利用优先级队列对作业调度的程序 包括使用说明文档,具有参考价值-their amateur prepared by the use of the preparation of a priority queue for scheduling procedures, including the use of documentation. with reference value
zhenhao
- 试利用优先级队列实现栈和队列。保证所需的程序能够达到标准. -test using Priority Queue and Queue achieve stack. To ensure the necessary procedures to meet standards.
company_service
- 一个用于帮助秘书处理公司事务的程序,可根据不同的职位确定不同的优先级,是优先级队列应用的一个很好的例子。-for a secretary to help handle the affairs of the company procedures, according to different jobs different priority level, Priority Queue is the application of a good example.
j04312
- 多级反馈队列调度算法是一种性能较好的作业低级调度策略,能够满足各类用户的需要。对于分时交互型短作业,系统通常可在第一队列(高优先级队列)规定的时间片内让其完成工作,使终端型用户都感到满意;对短的批处理作业,通常,只需在第一或第一、第二队列(中优先级队列)中各执行一个时间片就能完成工作,周转时间仍然很短;对长的批处理作业,它将依次在第一、第二、……,各个队列中获得时间片并运行,决不会出现得不到处理的情况。此系统模拟了多级反馈队列调度算法及其实现
youxianjiduilie
- 优先级队列类的实现,可作为头文件直接调用。
TheadQueue.zip
- 使用命令模式和责任链模式以及STL优先级队列实现线程池,可以直接加入现在的任何程序,Responsibility for the use of chain of command model and STL model and the realization of priority queue thread pool, you can direct any proceedings to join now
BOX
- 最少背包问题:假设有许多盒子,每个盒子能保存的总重量为1.0。有N个项i1,i2,…,iN,它们的重量分别是w1,w2,…,wN。目的是用尽可能少的盒子放入所有的项,任何盒子的重量不能超过他的容量。例如,如果想的重量为0.4, 0.4, 0.6和0.6,用两个盒子就能解决。 按如下策略解决此问题:按给定的次序扫描每一个项,把每一个项放入能够容纳他而不至于溢出的最满的盒子。用优先级队列选择要装入的盒子。-Minimum knapsack problem: Suppose there are m
jcym
- 这是两个优先级调度算法的源码,一个最多运行5个队列,另一个是最高优先级的进程调度源码-This is a two-priority scheduling algorithm source code, a run up to 5 queue, and the other is the highest priority scheduling process source
TsinghuaCdatastructures
- 清华+殷人昆C++数据结构 幻灯片教学课件 通过本课程的学习,应达到知识和技能两方面的目标: 1、知识方面:从数据结构的类定义和对象的使用,以及存储表示和操作的实现两个层次,系统地学习和掌握常用的基本数据结构(包括数组、顺序表、多项式、字符串、链表、栈与队列、优先级队列、广义表、树与森林、二叉树、堆、集合、图、搜索结构、索引结构、散列结构等)及其不同的实现,了解并掌握分析、比较和选择不同数据结构、不同存储结构、不同算法的原则和方法,为后续课程的学习打好基础。 -Tsinghua Q
DataStruct
- 此文件夹中共包括十二个小程序 AVL创建平衡二叉树,通过加入一个个的结点创建,并实现了平衡二叉树中的结点删除 Boyer_Moore算法的串模式匹配 Horspool算法的串模式匹配 Graph实现了有向图的非递归广度优先遍历及非递归深度优先遍历 HeapSort利用堆排序实现优先级队列 Merge实现二路归并排序算法 MFK动态规划解背包问题 nqueue求解n皇后问题 QuickSort快速排序算法的实现。 Shell排序算法的实现。 Tree程序
data_structure3
- 9、优先级队列 QueueNode.h Compare.h PriorityQueue.h Test.cpp 10、串 88 MyString.h MyString.cpp test.cpp 11、二叉树 BinTreeNode.h BinaryTree.h Test.cpp 12、线索二叉树 ThreadNode.h ThreadTree.h ThreadInorderIterator.h te
ProcessScheduling
- 设计一个有 N个进程并行的优先级调度程序:每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。 进程的优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为进程输入的时间。 进程的运行时间以时间片为单位进行计算。 每个进程的状态可以是就绪 W(Wait)、运行R(Run)、或完成F(Finish)三种状态之一。 就绪进程获得 CPU后都只能运行
task
- 剪枝算法,优先级用优先级队列来实现,优先级越高越靠近队列开头放置-Pruning algorithm, priority queue with priority to achieve, the closer the higher priority queue placed at the beginning
datastructures
- 各种数据结构的实现 包括顺序表、单链表、双向链表、循环链表、顺序栈、链式栈、顺序队列、链式队列、优先级队列、串、二叉树、线索二叉树、哈夫曼树、B+树、图的c++实现-Implementation of the various data structures, including order forms, a single linked list, doubly linked lists, circular list, the order of the stack, the stack chain
PACHONG
- 网络爬虫程序源码 这是一款用 C# 编写的网络爬虫 主要特性有: 可配置:线程数、线程等待时间,连接超时时间,可爬取文件类型和优先级、下载目录等。 状态栏显示统计信息:排入队列URL数,已下载文件数,已下载总字节数,CPU使用率和可用内存等。 有偏好的爬虫:可针对爬取的资源类型设置不同的优先级。 健壮性:十几项URL正规化策略以排除冗余下载、爬虫陷阱避免策略的使用等、多种策略以解析相对路径等。 较好的性能:基于正则表达式的页面解析、适度加锁、维持HTTP连接等
多级反馈队列算法程序
- 多级反馈调度算法,根据进程队列优先级进行调度(Multilevel feedback scheduling algorithm, scheduling based on process queue priority)
Priorityqueen_of_Dijkatra
- 使用优先级队列完成Dijkstra算法,使得寻找节点的时间复杂度为O(log|V|)(Using the priority queue to complete the Dijkstra algorithm)