搜索资源列表
djb
- 数据结构中队列源程序: 顺序队列.c 顺序循环队列.c 链式队列.c-queue data structure source : the order queue. C sequence and cycle cohort. C chain cohort. C
QMSMQApp1
- c#消息队列原代码-Message Queue source
H1
- 进程优先算法,进程调度是处理机管理的核心内容。本实验要求用C语言编写和调试一个简单的进程调度程序。通过本实验可以加深理解有关进程控制块、进程队列的概念,并体会和了解优先数和时间片轮转调度算法的具体实施办法-process priority algorithm, the process of scheduling processor is the core content management. The experiment called for using the C language and
WinMonoSong
- 基于C#的web发布队列应用程式,能够发布单曲-Based on the C# The web release queue applications, to release single
Project1
- 用C# 实现消息队列,可以进行不同应用程序的通信。-With the C# implementation of the message queue, can be different applications of communication.
shujujiegousuanfa
- 用C语言实现的数据结构算法,采用顺序队列对医院就诊排队进行计算处理,比较好的实现了排队。-With the C language implementation of the data structure algorithms, using the order of the queue on the queue for hospital computing, and better achieved by queuing.
7lkSiteProxy
- C#开发的TCP加密转发服务,有队列,原用于转发网站订单注册等事件信息到本地服务器-C# development of TCP encryption forwarding services, there are queues, the original orders for the forwarding site registration event information to the local server
mylist
- 纯C语言实现的通用链表(类)源代码 纯C语言代码实现的通用链表(类)源代码,可在bc++、tc,tc++等这些老古董编译器以及gcc、vc6.0、vc2005中通过编译,觉得不错的下载研究研究,不能抓到截图。 一些说明: 为了可扩展使用,下面的结点结构中用TYPE指定数据类型,使用时请按照需要在list_def.h中把TYPE定义为合适的类型,并且提供三个原型函数,第一个用来为TYPE类型的数据赋值,第二个判断两个TYPE类型的数据是否相等,第三个用来打印(显示)TYPE
PACHONG
- 网络爬虫程序源码 这是一款用 C# 编写的网络爬虫 主要特性有: 可配置:线程数、线程等待时间,连接超时时间,可爬取文件类型和优先级、下载目录等。 状态栏显示统计信息:排入队列URL数,已下载文件数,已下载总字节数,CPU使用率和可用内存等。 有偏好的爬虫:可针对爬取的资源类型设置不同的优先级。 健壮性:十几项URL正规化策略以排除冗余下载、爬虫陷阱避免策略的使用等、多种策略以解析相对路径等。 较好的性能:基于正则表达式的页面解析、适度加锁、维持HTTP连接等
DataStructure
- C#语言版本的各种数据结构的代码,包括线性表、循环链表、堆栈、队列、矩阵、树、图及各种查找算法的代码。-C# language versions of the various data structures of the code, including the linear form, circular linked list, stack, queue, matrix, tree, graph, and a variety of search algorithm code.
QueueApp
- 原创:C#实现数据结构的队列 原创:C#实现数据结构的队列-C# QueueApp
MSMQ_TEST
- windows 消息队列的基本使用源码,采用C# 2008开发,调试前请看下代码,安全消息队列,建个与程序里一致的队列名-the basic use of windows message queue source code, using C# 2008 development, see the following code before debugging, security, message queues, and program build a name in the same queue
dongtaiyouxiandiaodusuanfa
- 用C 语言实现对N个进程采用优先权优先算法的进程调度。通过优先权改变原则:1. 进程在就绪队列中等待一个片,优先权值加1 2 .进程每运行一个时间片,优先权值减3 实现对优先权的控制.-N with a C language implementation of the priority of a process using the process of priority scheduling algorithm. By changing the principle of priority: 1.
InterCup
- c#编写上位机,采用多线程技术及模拟消息队列-c# prepared PC, multi-threading and message queue simulation
CSharpMQ
- IBM MQ C#调用代码,保存数据或从队列读数据.-IBM MQ
Palindromes-judgement-CSharp
- 基于C#+winform开发的“回文判定”程序:对于一个从键盘输入的字符串,判断其是否为回文。回文即正反序相同。如“abba”是回文,而“abab”不是回文。此判定程序包含了三种判定方法:1、根据数组元素;2、利用栈先进后出,队列先进先出的特点3、分段检测。(已给出完整的代码注释)-Based on C#+ winform development "palindromes judgement" program: for a keyboard input from the string, deci
nwebcrawlercSharp
- 可配置:线程数、线程等待时间,连接超时时间,可爬取文件类型和优先级、下载目录等。 状态栏显示统计信息:排入队列URL数,已下载文件数,已下载总字节数,CPU使用率和可用内存等。 有偏好的爬虫:可针对爬取的资源类型设置不同的优先级。 健壮性:十几项URL正规化策略以排除冗余下载、爬虫陷阱避免策略的使用-c# crawler Threads
c
- 建立两个类型的表(队列和堆栈),使它们可以通过共用的接口访问。 list stack queue store() retrieve() -e store() retrieve()
homework
- 将两个分别从小到大排列的有序数组a和b复制合并到第3个有序数组c中。m和 n分别是数组a和b的元素个数,结果c的元素个数为k。例如,a和b数组分别为{1,2, 2,3,8}和{3,4,7,8},则结果数组c的值是:{1,2,2,3,3,4,7,8,8)。算法是:将a、b两个数组看成两个队列,比较队首的两个元素,将较小者放入c队列尾部,如果队首的两个元素相等,则先选择a队列首部元素加入c队列尾部。循环执行以上过程,直到a或b队列之一为空,然后将另一个非空队列拷贝到c队列尾部。注意:不允许使用其它算
WpfApp打印
- 使用C#的WPF与打印机调用打印例子。使用PrintDialog 类,用打印队列实现打印。(C# WPF and printer call print.)