搜索资源列表
作业调度11
- 由于在单道批处理系统中,作业一投入运行,它就占有计算机的一切资源直到作业完成为止,因此调度作业时不必考虑它所需要的资源是否得到满足,它所占用的CPU时限等因素。 每个作业由一个作业控制块JCB表示,JCB包括如下信息:作业名、提交时刻、所需运行时间、所需资源、作业状态、链指针等。 在程序开始时对用户提交的作业按作业调度算法排列,用链表形式存储,这里分别采用先来先服务、短作业、响应比高者优先调度算法对作业进行调度。这里为了操作者的方便,每个作业无论所需运行时间多少,都是每敲一次键盘就执行完一个作业
CSharp例子
- C#编程实例,包含内容丰富,适合C#初学者学习。各个实例的代码与书中的编号是一致的,如第3章实例64的代码在目录“第3章\\Example064-创建轨迹梯度”中。-C# programming examples include rich content, suitable for beginners to learn C#. Various examples of the code book and the number is the same as Chapter 3 of 64 examp
SMSFree
- 发送短消息的工具包括全部源代码,以及如何通过web 页掉用-send SMS tools include full source code, and how to use web pages swap
MPK_Calendar
- C#写的时间日历控件,包含原代码,可以设置风格。-C# to write the calendar controls include the original code can set style.
4294
- C# 数据库编程实例,包含各类型的数据库编程,含源代码。-Database Programming C# examples include various types of database programming, including source code.
设计一个电子词典
- 一个电了词典,在里面可以查找到你所要的词 而且还可以自已加入更多的词-one -- the dictionary, you can try to be your word, but can also include more of their own words
共轭梯度法
- 上述算法的④输出结果要求包含最优解、最优值、迭代次数,以及每次迭代的中间结果(对 而言)终止准则为H终止准则-above algorithm output requirements include optimal solution, the optimal values, the number of iteration, and each iteration of the intermediate results (in terms of) the termination criteria f
惩罚函数法
- ④输出结果要求包含最优解、最优值、迭代次数,以及每次迭代的中间结果(对 而言)- output requirements include optimal solution, the optimal values, the number of iteration, and each iteration of the intermediate results (to run)
布线问题(分支限界算法应用)
- 六 程序实现: #include <stdio.h> typedef struct { int row int col }Position int FindPath (Position start, Position finish, int &PathLen, Position *&path) { //计算从起始位置start到目标位置finish的最短布线路径,找到返回1,否则,返回0 int i if ((start.row =
AVIan
- 在按纽上播放avi文件. 本程序介绍一个从CButton派生的类CAniButton,用于播放AVI动画,象一般的CButton按钮一样使用CAniButton(Style必须包含自绘制风格),在OnInitDialog对话框中调用LoadAVI(AVI_ID), 其中,AVI_ID是在资源文件中的动画文件的标识-button on the player avi file. The procedures introduced a CButton derived from the class CA
danlianbiao
- 此为数据结构中 单链表的定义和实现。其中包括了我们使用单链表中的常见的一些函数的定义和实现,并且进行了验证,经过证明自己的思路是正确的,具有很好的参考价值-this data structure for single-linked list to the definition and implementation. These include our use of single-linked list of some common definition of the function and a
shuangxunhuanlianbiao
- 此为数据结构中 双循环链表的定义和实现。其中包括了我们使用双循环链表中的常见的一些函数的定义和实现,并且进行了验证,经过证明自己的思路是正确的,具有很好的参考价值-this data structure for the two-cycle Chain definition and implementation. These include the use of two-cycle we Linklist some of the common functions of the definition
this-is-a-sound-code-of-image-enhancement-based-on
- 小波变换的C源代码 #define N0 128 #include \"stdio.h\" #include \"stdlib.h\" #include \"math.h\" #include \"string.-wavelet transform C source code # define N0 128 # include "stdio. h "# include" stdlib.h "# include" math.h
chaoshi33
- 功能介绍:实现超市商品信息的管理.功能包括商品信息的添加,商品信息的删除,商品信息的修改,商品信息的浏览, 商品信息的查询,商品信息的排序以及系统界面颜色设置等功能.-function introduced : achieving supermarket commodity information management. Features include the addition of information goods, commodity information deleted, the
mcu_pid_c_program
- 在使用单片机作为控制cpu时,请稍作简化,具体的PID参数必须由具体对象通过实验确定。由于单片机的处理速度和ram资源的限制,一般不采用浮点数运算,而将所有参数全部用整数,运算到最后再除以一个2的N次方数据(相当于移位),作类似定点数运算,可大大提高运算速度,根据控制精度的不同要求,当精度要求很高时,注意保留移位引起的“余数”,做好余数补偿。这个程序只是一般常用pid算法的基本架构,没有包含输入输出处理部分。-using SCM as the control cpu, please slight
dingpiao
- 航空客运订票的业务活动包括: 查询航线, 客票预订,和办理退票, 试设计一个航空客运订票系统, 以使上述业务可以借助计算机来实现.-airline passenger booking business activities include : inquiries routes, ticket booking, and obtain refunds. Design of a test air passenger booking system, so that these operations c
lwork
- 一个学生成绩编辑程序,本程序设计优缺点: 采用数组实现各项功能,简洁易懂,便于操作。功能包括: 1. 建立文件:能建立多个文件保存不同数据;载入:可从现有任意文件中载入数据;保存:可将输入的数据保存到现有文件中,建议新建文件,否则会覆盖原文件中数据。 2. 增加或删除学生数据,按学号查学生姓名、成绩(包括平均成绩),求总平均成绩和各科平均成绩。 3. 有各种排序功能:按学号排序、平均成绩排序、某门课成绩排序。 4. 不及格类统计:统计考试有不及格的学生、指定课程有不及格的学生
cSharpPatten
- 本书主要介绍如何用最常见的设计模式编写C#程序.全书分为四个部分,首先介绍了C#语言和面向对象程序设计的一般原则,可作为C#程序设计的快速入门教程 然后分别讲述了创建型模式,结构型模式和行为型模式.每一类设计模式又包括若干种具体模式,共有23种.在介绍每种模式时,给出了一个或多个应用该模式的示例,以便于理解,且这些示例都是能完全运行的程序,包含在随书附带的光盘中.此外,每一章还提供了UML图,用以说明类之间的关系. 本书适用于计算机及相关专业的本科生和研究生,对于软件开发人员也是一本很好的参考书
335346255ckghkcghk1633
- 本论文主要包括学生选课系统方案分析与网络规划,本系统是一个典型的信息管理系统(MIS),其开发主要包括后台数据库的建立和维护以及前端应用程序的开发两个方面。对于前者要求建立起数据一致性和完整性强、数据安全性好的库。而对于后者则要求应用程序功能完备,易使用等特点-,ASP,软件设计/软件工程/software engineering -this paper include students Elective System program analysis and network planning,
easyEditor
- 这是一个简易的文件编译器,能实现的功能包括创建文件、写入字符和读取文件中字符并显示出来。实现语言为C#。-This a summary of the document compiler can achieve functions include the creation of documents, read into the characters and characters and documents show. Implementation of the C# language.