资源简介
贪心算法:设有n 个顾客同时等待一项服务。顾客i 需要的服务时间为ti ,1 <= i <= n 。应如何安排n个顾客的服务次序才能使平均等待时间达到最小?平均等待时间是 n 个顾客等待服务时间的总和除以 n。
编程任务:对于给定的 n 个顾客需要的服务时间,编程计算最优服务次序。
代码片段和文件信息
#include
int main()
{
int nij;
double time=0.0;
double t=0.0;//最小平均等待时间
int a[10000];
scanf(“%d“&n);
double sum=0;
int temp;
for(i=0;i {
scanf(“%d“&a[i]);
}
for(i=0;i {
for
- 上一篇:jdk1.7_for_mac.txt
- 下一篇:模糊控制技术在双容水箱液位中的应用
相关资源
- The GraphSLAM algorithm
- algorithm 头文件 说明
- CS_recovery_algorithms_OMP_SP_IHT.zip
- Introduction to Genetic Algorithms.1998.pdf
- Bandit Algorithms for Website Optimization.pdf
- Machine Learning. Algorithms and Applications-
- Hands-On Data Structures and Algorithms with R
- 算法导论 Introduction to Algorithms CLRS 英
- Stochastic Recursive Algorithms for Optimizati
- Practical Optimization:Algorithms and Engine
- successful algorithmic trading 中文版
- High Bandwidth Sensorless Algorithm for AC Mac
- Distributed.Systems.An.Algorithmic.Approach.2n
- Introduction to Distributed Algorithms
- Algorithms Unlocked(Thomas H. cormen)
- Master Machine Learning Algorithms
- 樽海鞘群算法Mirjalili发表原论文Salp
- Algorithms 4th 普林斯顿大学算法公开课
- 引力搜索算法Gravitational Search Algorit
- Algorithms for Image Registration:Advanced Nor
- 论文:ADP with MCTS Algorithm for Gomoku 英文
- rete算法原文和CMU的一个论文
- Fast Monte Carlo algorithm
- LaTex算法库——algorithmic.sty
- LaTex算法库——algorithm.sty
评论
共有 条评论