-
银行服务系统模拟
某银行提供10个服务窗口(7个对私服务窗口,3个对公服务窗口)和100个供顾客等待的座位。顾客到达银行时,若有空座位,则到取号机上领取一个号,等待叫号。取号机每次仅允许一位顾客使用,有对公和对私两类号,每位顾客只能选取其中一个。当营业员空闲时,通过叫号选取一位顾客,并为其服务。
- 2023-08-18 11:40:04下载
- 积分:1
-
sirt算法
% Syntax: x=sirt(A,b,tolx,maxiter)
%
% Inputs:
% A = Constraint matrix. A=一个约束矩阵
% b = right hand side. b=右边
% tolx = Terminate when the relative diff between tolx=终止时,两次迭代之间的相对差异小于tolx。
% two iterations is less than tolx.
% maxiter = Stop after maxiter iterations. maxiter=停止迭代后
%
% Outputs:
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-06 13:18:49下载
- 积分:1
-
这是常用的数值算法和图论算法 是用伪代码描述的 里面有对算法的详细讲解...
这是常用的数值算法和图论算法 是用伪代码描述的 里面有对算法的详细讲解-This the commonly used algorithms and numerical algorithms of graph theory is used pseudo-code description of the inside of the algorithm in detail on the
- 2022-04-15 02:42:27下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
自制的 余弦和三角波计算(使用计算方法的2分法求解余弦和三角波的交点)...
自制的 余弦和三角波计算(使用计算方法的2分法求解余弦和三角波的交点)-privately triangular wave and cosine calculations (using the two methods of calculation method for cosine wave and the triangular intersection)
- 2022-11-11 10:45:03下载
- 积分:1
-
一、问题的提出:
某厂根据计划安排,拟将n台相同的设备分配给m个车间,各车间获得这种设备后,可以为国家提供盈利Ci j(i台设备提供给j号车间将得到的利润,...
一、问题的提出:
某厂根据计划安排,拟将n台相同的设备分配给m个车间,各车间获得这种设备后,可以为国家提供盈利Ci j(i台设备提供给j号车间将得到的利润,1≤i≤n,1≤j≤m) 。问如何分配,才使国家得到最大的盈利L
二.算法的基本思想:
利用动态规划算法的思想,设将i台设备分配给j-1个车间,可以为国家得到最大利润Li (j-1)(1≤i≤n,1≤j≤m),那么将这i台设备分配给j个车间,第j个车间只能被分配到0~i台,所以我们只要算出当第j个车间分配到t(0
- 2022-11-07 12:55:03下载
- 积分:1
-
冒泡排序算法的C++
该代码读取输入文本文件并将其排序,然后将这些数字排序为输出文本文件。代码采用了气泡排序算法进行排序。
- 2022-01-26 05:50:08下载
- 积分:1
-
将空节点连接成链表的静态链表
about cooperation of list
- 2022-05-18 08:43:23下载
- 积分:1
-
C++用贪心法解决货币兑换序列问题
已知有n中货币c1,c2,c3...cn和有关兑换率的n*n的表R,其中Ri,j是一个单位的货币ci可以卖到的货币cj的数量,要求一个序列使之兑换结果变多。
- 2022-05-22 03:07:50下载
- 积分:1
-
请认真阅读您的文件包,说明它至少有40字节。
Please read your package and describe it at least 40 bytes.
System will automatically delete the directory of debug and release
- 2022-09-10 02:55:03下载
- 积分:1