搜索资源列表
task_compositor
- 带有期限的作业排序问题:假定只能在一台机器上处理n个作业,每个作业均可在单位时间内完成;又假定每个作业i都有一个截止期限di>0(它是整数),当且仅当作业i在它的期限截止以前被完成时,则获得pi>0的效益。求具有最大效益值的可行解。 文件中包含详细的源代码和注释,以实现这个经典的问题。-period with the operations scheduling problem : the assumption that only a machine n handling oper
shujuchouxiang
- 数据抽象(使用类和对象设计回应程序) 实验内容描述: 1. 测试程序 假设类名为Welcome,测试程序如下: void main() { Welcome we Welcome you(we) you.Display() you.Set(“Thank you.”) cout<<you.Get()<<endl you.talk() you.Display() } -data ab
Job_Arrary
- 有限期作业安排问题”描述如下:有n个任务J1,J2,...,Jn,每个任务Ji都有一个完成期限di,若任务Ji在它的期限di内完成,则可以获利Ci(1[i[n) 问如何安排使得总的收益最大(假设完成每一个任务所需时间均为一个单位时间).这个问题适合用贪心算法来解决,贪心算法的出发点是每一次都选择利润大的任务来完成以期得到最多的收益 但是对于本问题由于每一个任务都有一个完成的期限,因此在任务安排过程中除了考虑利润Ci外,还要考虑期限di.
ShellSort
- 希尔排序(缩小增量法) 排序过程:先取一个正整数d1<n,把所有相隔d1的记录放一组,组内进行直接插入排序;然后取d2<d1,重复上述分组和排序操作;直至di=1,即所有记录放进一个组中排序为止
数据统计源代码
- 设BUF数据区中n个无符号字节数,试计算这些数之和,并以以下形式显示:d0+d1+…+dn-1=S 其中di为第i个数的十进制表示,S为和值的十进制表示。编写程序,要求将十进制数的显示使用子程序SUB1实现,求和工作用子程序SUB2实现。上机调试程序,检查程序正确性,BUF data area located in the n-byte unsigned number, the number of test and calculation of these and the following
shui-di-shi-chuan-_c
- 水滴石穿之c语言系列全面上市——学习c语言高级部分的必备资料 作者多年经验融合而成 分为十二个系列,每个系列只有短短的几页word 简约而不简单-Audio Bible series of comprehensive listing of c language- learn c language part of the necessary information on senior years of experience in a combination of the twelve is div
fei-di-gui-zhong-xu-bian-li
- 这是我们老师写的代码,非递归中序遍历,数据结构试验-This is our teacher to write the code, in-order traversal non-recursive data structure test
cPP
- 里面有多个c++代码,适合初学者参考,其中包括排序的两种方法(冒泡法、选择法)、判断素数、偶数输出-ying yu neng li shui ping di a ,bunebgfanyi a,zi dong fan yi you mei fan yi zhi neng zhe yang ban le
Dijkstra
- 迪杰斯特拉算法的简单实现,供大家参考,代码简洁易懂,数据结构可用-Di jester pull algorithm of simple realization, provide everyone reference, code concise to understand, the structure of the data available
Sum_min
- Sum min tong duong di
bestspot
- Bestspot duong di toi -Bestspot duong di toi uu
di-gui-qiujie-8-Queen
- 递归求解八皇后问题。C语言程序,数据结构课程作业,注释完全,简单易懂,亲测可用。-Recursively solving the eight queens problem. C language programs, data structures course work, notes completely, easy to understand, pro-test is available.
complex_add_multiply
- 设两个复数A=a+bi, B=c+di(其中a,c为实部,c,d为虚部) 则A+B=a+c+(b+d)i A*B=ac-bd+(ad+bc)i,用单链表实现-complex add and multiply
矩阵调度算法
- 迪杰斯特拉算法,求两点最短路径,可以简单快速得出矩阵内两点之间的最短路径。(Di Jie Si Te La Suan Fa)