-
C语言算法
资源描述1000个C语言算法设计源码包含大量经典算法设计,简明易懂,对初学者很有帮助,文件很好的进行了分类
- 2022-03-06 19:12:14下载
- 积分:1
-
石油勘探专业算法:地震波阻抗反演晚…
石油勘探专业算法:地震资料波阻抗反演后期算法,包括带限反演算法和道积分反演算法两种-professional algorithm oil exploration : seismic data late wave impedance inversion algorithm, including band-limited anti-calculus and calculus Road-two points
- 2022-06-26 16:11:26下载
- 积分:1
-
这个是关于aes对称加密算法的优化程序,请大家指教。
这个是关于aes对称加密算法的优化程序,请大家指教。-This is on a symmetric encryption algorithm aes optimization procedure, please advise everyone.
- 2022-08-17 22:15:29下载
- 积分:1
-
粒子群优化算法 (PSO) c
粒子群优化算法 (PSO) c粒子群优化 (PSO) 算法 [1,2] 在 C 可执行"插入"代码作为一个小型图书馆。粒子群优化算法用于涉及全局随机优化的连续函数 (称为目标函数) 的问题。粒子群优化算法也可用于离散优化问题,但在此库的当前版本中未实施这种行为。使用只是在代码中包括 pso.h 和 pso.c。您需要有 GNU 科学图书馆和各自的发展 (即标题) 文件,以在您的应用程序中包含 pso.c。你的 Makefile 中将添加到您的 LDFLAGS 的-lgsland lgslcblas。为了使用 pso_solve(),您需要:最小化目标函数 (见在 pso.h 中定义类型 pso_obj_fun_t),一个具有正确初始化的 pso_results_t 对象 (malloc 会) gbest 缓冲区。这是将存储发现最好的位置,以及最小的误差 (存储在成员错误)。一个具有正确初始化的值 (使用 pso_set_default_settings() 进行快速和肮脏的初始化) 的 pso_settings_t 对象功能邻域拓扑粒子群优化算法用于确定每个 particle 附近吸引子提供了三种不同的策略:全球的拓扑结构 (PSO_NHOOD_GLOBAL),每个粒子由每一另一种粒子群通知环形的拓扑 (PSO_NHOOD_RING) 在那里存在着固定的环型拓扑结构和每个粒子由其邻近的微粒通知
- 2022-04-22 20:27:57下载
- 积分:1
-
使用嵌入式零树小波的图像压缩
嵌入式零树小波嵌入零树小波是一种高效是一种有效方法的图像 compression.here 我目前使用嵌入式零树小波的图像压缩算法。
- 2023-05-21 03:00:02下载
- 积分:1
-
issue a travel home to travel home to drive a car with the minimum of cost yi us...
旅行家问题 一个旅行家想驾驶汽车以最少的费yi 用从一个城市到另一个城市(假设出发时油箱是空的)。给定两个城市之间的距离为D1、汽车油箱的容量为C(以升为单位),每升汽油能行驶的距离为 D2,出发点每升汽油价格P和沿途油站数N(N可以为零),油站i离出发点距离Di,每升汽油价格Pi(i=1,2...N)。计算结果四舍五入至小数点后两位。 如果无法到达目的地,则输出“No Solution"。-issue a travel home to travel home to drive a car with the minimum of cost yi used from one city to another city (assuming starting at the fuel tank was empty). Given the two cities for the distance between D1, car fuel tank capacity of the C (in liters) per liter petrol traveling distance to the D2, the starting point liter gasoline prices P and several petrol stations along the N (N can be zero), PFS i distance from the starting point Di per liter Steam oil prices Pi (i = 1,2 ... N). Calculation results rounded to two decimal places. If unable to reach their destination, the export of "No Solution."
- 2023-09-07 00:25:03下载
- 积分:1
-
常用算法的C程序。主要内容包括多项式的计算、复数运算、随机数的产生、矩阵运算、矩阵特征值与特征向量的计算、线性代数方程组的求解、非线性方程与方程组的求解、插值与
常用算法的C程序。主要内容包括多项式的计算、复数运算、随机数的产生、矩阵运算、矩阵特征值与特征向量的计算、线性代数方程组的求解、非线性方程与方程组的求解、插值与逼近、数值积分、常微分方程组的求解、数据处理、极值问题的求解、数学变换与滤波、特殊函数的计算、排序和查找。-Commonly used algorithm of C procedures. Include polynomial terms, complex computation, random number generation, matrix operations, matrix eigenvalue and eigenvector calculations, linear algebra equations, nonlinear equations with the equations, interpolation and approximation, numerical integration, solving ordinary differential equations, data processing, for solving extremum problems, mathematical transformation and filtering, the calculation of special functions, sorting and search.
- 2022-04-01 01:32:13下载
- 积分:1
-
时间序列趋势分析中,观察变化方向以及查找突变点的MK程序。...
时间序列趋势分析中,观察变化方向以及查找突变点的MK程序。-Time series trend analysis, the observed direction of change and to find mutations point MK procedures.
- 2022-03-22 01:04:20下载
- 积分:1
-
用SQLSERVER2000做的分各个单位的报表
用SQLSERVER2000做的分各个单位的报表-Sqlserver2000 do with the sub-units of statements
- 2023-07-08 19:35:02下载
- 积分:1
-
ACM分治 最临近点对
1005: 最邻近点对
时间限制: 1 Sec 内存限制: 8 MB
提交次数: 6024 通过次数: 1804
提交
题目描述
要求用分治算法(O(nlogn)复杂度)实现寻找n个点中最邻近点对,输出最邻近距离的平方。其中0
- 2022-02-04 12:14:49下载
- 积分:1