搜索资源列表
os_2
- 本程序需要用到数据结构中队列的概念完成。用指针指出下一个进程的PCB首地址,最后一个进程中指针为“0”。该调度算法是从后备队列中选择一个或若干个估计运行时间最短的作业,将其调入内存运行。当要求运行时间不为0时,将PCB加入队列(按优先数大小插入,且置队首标志);若要求运行时间为0,则把它的状态修改为“结束”(),并退出队列。-the procedures need to resort to queue data structure to complete the concept. Using i
my_linux_fifo
- linux下面消息队列具体实现源代码,测试通过-below Message Queue concrete realization of the source code, the test
djb
- 数据结构中队列源程序: 顺序队列.c 顺序循环队列.c 链式队列.c-queue data structure source : the order queue. C sequence and cycle cohort. C chain cohort. C
parkb
- 停车场管理系统,可计数,计时,计费等功能,是栈与队列的集合-car park management system can count, time, billing and other functions, and the stack is a collection of queue
moxingmoni
- 一个学习模型模拟不错的例子,对排队等候这种情况进行了简单的模拟。-a good model to study the example of the queue waiting for this for a simple simulation.
UseMSMQ
- CSharp编程,数据库编程,消息队列使用-CSharp programming, database programming, the use of Message Queue
queue
- 一个数据结构的编程,练习了插入删除队列的操作
QMSMQApp1
- c#消息队列原代码-Message Queue source
image-4
- ex4.14 图元识别问题« 问题描述:在数字化图像处理中常将一幅图像表示为一个m´ m 的像素矩阵。其中每个像素的值为0或1。值为0的像素表示图像的背景,而值为1 的像素表示图像中某个图元上的一个点,通常称其为图元像素。当一个像素在另一个像素的上方、下方、左侧或右侧时,称这2个像素为相邻像素。一幅图像中的相邻像素属于同一图元,而不相邻的像素属于不同图元。图元识别问题就是对给定图像的图元像素进行标记,使得同一图元的图元像素有相同的标记,而不同图元的图元像素其标记也不同。试
MessageQ
- windows message queue应用范例-Application examples of windows message queue
Project1
- 用C# 实现消息队列,可以进行不同应用程序的通信。-With the C# implementation of the message queue, can be different applications of communication.
QUEUE
- Implement Queue in csharp
stack-to-queue
- 用二个顺序存储结构的栈,通过这二个栈的相关运算实现队列的以下功能。 Queue() //构造函数 bool empty() //返回队列是否已空 bool full() //返回队列是否已满 int serve() //出队列,成功返回0,否则返回-1 int append(const string &item) //item进队列,成功返回0,否则返回-1 int retrieve(string &item) const //将队列头的值赋给item,成功返
queue
- 清华大学电子工程系《数据结构与算法》课程课件:队列问题-queue problem_ courseware from the department of electronic engineering of Tsinghua University
Queue
- winform编程,实现一个数组循环队列。队列有三个数据provider,分别随机的间隔1~3秒向队列插入字符。Provider1插入字符a, Provider2插入字符b,Provider3插入字符c,每次插入字符的长度是随机1~10个字符。队列有1个receiver, 以1秒/字符的速度从队列中取字符。队列长度可以设置为100。界面上动态实时的显示循环队列中头指针和尾指针所在的位置,显示当前队列中所有的字符。-An example to show a queue which is h
Chain-queue-queuing-problem-bank
- 用链队列解决银行排队叫号问题 用链队列解决银行排队叫号问题-Chain queue resolved queuing problem bank
CSharpCircular-queue
- C#编写的循环队列,包括基本操作和运行程序-Basic operations written in C# circular queue
example-of-queue
- 包含了2个示例展示了最常用的数据结构:队列的使用方便。初学者可以根据示例学习相关函数。-Contains two examples show the most commonly used data structures: easy to use queue. Beginners can learn to function in accordance with the relevant examples.
queue
- 队列的基本程序代码,比如入队,出队,取队头,此代码用链表的方式采用的FIFO(first in first out),新元素(等待进入队列的元素)总是被插入到链表的尾部,而读取的时候总是从链表的头部开始读取。每次读取一个元素,释放一个元素。所谓的动态创建,动态释放。因而也不存在溢出等问题。由于链表由结构体间接而成,遍历也方便。-The basic code of the queue, for example into the team, the team, the first team to t
c-queue
- C queue program attached