搜索资源列表
zuijiadiaodu
- 本程序实现了给出一些进程运行时间找出他们的最佳调度顺序 ,使总的时间最少-this program is the process of running some time to identify the best scheduling order, making the total time at least
Sum
- 算法实现题1-2 连续和问题 « 问题描述: 给定一个正整数n,计算有多少个不同的连续自然数段,其和恰为n。例如,当n=27 时,有4 个不同的连续自然数段的和恰为27:2+3+4+5+6+7;8+9+10;13+14;27。 « 编程任务: 给定一个正整数n,试设计一个O(n)时间算法,计算有多少个不同的连续自然数段的 和恰为n。 « 数据输入: 由文件input.txt提供输入数据。文件的第1 行是正整数n。 « 结
Sink
- Ex8-4 汇点问题 « 问题描述: 采用邻接矩阵表示一个具有n 个顶点的图时,大多数关于图的算法时间复杂性为 O(n2 ),但也有例外。例如,即使采用邻接矩阵表示一个有向图G,确定G 是否含有一个 汇(即入度为n-1,出度为0 的顶点),只需要O(n)计算时间。试写出其算法。 « 编程任务: 对于给定的有n个顶点的图G 的邻接矩阵,各顶点依次编号为1,2,…,n。试设计一 个O(n)时间算法,计算图G 的汇点。 « 数据输入:
Gap
- 算法实现题1-5 最大间隙问题 « 问题描述: 最大间隙问题:给定n 个实数x , , xn 1 2 ,求这n 个数在实轴上相邻2 个数之间的最 大差值。假设对任何实数的下取整函数耗时O(1),设计解最大间隙问题的线性时间算法。 « 编程任务: 对于给定的n 个实数n x , x , , x 1 2 ,编程计算它们的最大间隙。 « 数据输入: 输入数据由文件名为input.txt的文本文件提供。文件的第1
baoweier
- 机械优化设计作业(鲍威尔) 说明:学完优化设计,老师说要做作业,全班分为5个小组,分别用最速下降法,牛顿法,鲍威尔法,共轭.DHF 法完成: f(x)=x1^2+x2^2-x1*x2-10*x1-4*x2+60.小弟采用的是用计算方法选出d的表达式后迭代得到。分别用最速下降法,牛顿法,鲍威尔法完成了作业。 鲍威尔法最全。 功能有:输入起始点(x0,x1)和精度E 求出最优解。运算过程保存在程序目录的 txt文件中。txt自动添加标题。添加程序运行时间。等等等~ 大家
NiuDun
- 机械优化设计作业(牛顿法) 说明:学完优化设计,老师说要做作业,全班分为5个小组,分别用最速下降法,牛顿法,鲍威尔法,共轭.DHF 法完成: f(x)=x1^2+x2^2-x1*x2-10*x1-4*x2+60.小弟采用的是用计算方法选出d的表达式后迭代得到。分别用最速下降法,牛顿法,鲍威尔法完成了作业。 鲍威尔法最全。 功能有:输入起始点(x0,x1)和精度E 求出最优解。运算过程保存在程序目录的 txt文件中。txt自动添加标题。添加程序运行时间。等等等~ 大
zuisuxiajiang
- 机械优化设计作业(最速下降法法) 说明:学完优化设计,老师说要做作业,全班分为5个小组,分别用最速下降法,牛顿法,鲍威尔法,共轭.DHF 法完成: f(x)=x1^2+x2^2-x1*x2-10*x1-4*x2+60.小弟采用的是用计算方法选出d的表达式后迭代得到。分别用最速下降法,牛顿法,鲍威尔法完成了作业。 鲍威尔法最全。 功能有:输入起始点(x0,x1)和精度E 求出最优解。运算过程保存在程序目录的 txt文件中。txt自动添加标题。添加程序运行时间。等等等~
Henit
- 汉诺塔演示程序 可以显示运行时间 整体运行-Tower of Hanoi demo program can show the overall run-time operation
sushu
- 使用Eratosthenes算法编写程序,求20000以内的素数,每隔500为一个测试点,每个测试点计算五次,记录每次的运行时间求平均值,结合计算机硬件配置以及运行时间随数据规模的增大的变化情况分析计算机性能。-To write programs using the Eratosthenes algorithm, find the prime numbers less than 20,000, every 500 to a test point, the calculation for each
fft
- 一个用于快速傅里叶变换的c++源程序,其中包括按时间抽样变换和按频率抽样变换两种算法。程序运行速度非常快。-One for the fast Fourier transform c++ source code, including sampling by time and by changing the frequency sampling transform algorithms.
clock
- 用cuda编写时,计算程序运行时间的应用。-With cuda writing, calculating run time applications.
YIWANJIECHENG
- 代码可以计算10000以内整数的阶乘,并计算程序运行时间。-The code can calculate the factorial of integers less than 10000, and calculate program run time.
3
- 分别编写函数实现冒泡排序、快速排序和简单插入排序算法; 2) 2路归并排序(选做) 3) 编制一个应用程序,它将随机产生的N个0~65535之间的整数插入到一个顺序表中,然后分别用上述排序算法对这个顺序表进行排序;记录并显示各种方法的运行时间; 4) 以N=500和N=5000运行这个应用程序,对算法运行的时间作比较和分析。 -Write a separate function to achieve the bubble sort, quick sort and simple
fractional-order_MATLAB
- 求解分数阶非线性系统数值解。。。程序已经验证过,由于数值量大。。运行时间比较长,耐心等待-Numerical solution of fractional order nonlinear systems... Program has been verified, due to the large amount of data.. Running time is longer, patient waiting
moukie_v58
- 本程序的性能已经达到较高水平,matlab程序运行时导入数据文件作为输入参数,包括压缩比、运行时间和计算复原图像的峰值信噪比。- The performance of the program has reached a high level, Import data files as input parameters matlab program is running, Including compression ratio, image restoration computing uptime
qiemen_v12
- 包括压缩比、运行时间和计算复原图像的峰值信噪比,matlab程序运行时导入数据文件作为输入参数,基于互功率谱的时延估计。- Including compression ratio, image restoration computing uptime and peak signal to noise ratio, Import data files as input parameters matlab program is running, Based on the time delay est
nengpan
- 已经调试成功.内含m文件,可直接运行,包含收发两个客户端的链路级通信程序,包括压缩比、运行时间和计算复原图像的峰值信噪比。- Has been successful debugging. M contains files can be directly run, Contains two clients receive link-level communications program, Including compression ratio, image restoration computi
jeiqing_v12
- 这是一个好用的频偏估计算法的matlab仿真程序,包括压缩比、运行时间和计算复原图像的峰值信噪比,汽车课设货车Matlab驱动力图程序。- This is a useful frequency estimation algorithm matlab simulation program, Including compression ratio, image restoration computing uptime and peak signal to noise ratio, Car class
qenqan
- ldpc码的编解码实现,课程设计时编写的matlab程序代码,包括压缩比、运行时间和计算复原图像的峰值信噪比。- Codec ldpc code implementation Course designed to prepare the matlab program code, Including compression ratio, image restoration computing uptime and peak signal to noise ratio.
kangnui_v78
- 基于负熵最大的独立分量分析,计算多重分形非趋势波动分析matlab程序,包括压缩比、运行时间和计算复原图像的峰值信噪比。- Based on negative entropy largest independent component analysis, Calculation multifractal detrended fluctuation analysis matlab program, Including compression ratio, image restoration com