-
外部排序算法C++实现
这是我们数据结构与算法设计的一次作业,是一个外部排序的算法实现,希望对刚刚学数据结构的同学有一点帮助。
- 2022-01-26 02:10:11下载
- 积分:1
-
complex algorithm
复数运算详细算法-complex algorithm
- 2022-02-07 16:21:29下载
- 积分:1
-
教育机器人处理游戏的源代码
由中国自动化学会机器人竞赛工作委员会和中国人工智能学会智能机器人专业委员会共同主办,2011年和2012年的比赛项目由深圳大学承办,深圳大学和深圳市机器人协会联合承办的首届大赛于2011年11月12~14日在深圳大学成功举行,吸引了来自全国各地的30多所高校和中学参加,参赛人数接近300人,设立的比赛项目包括:教育机器人智能搬运竞赛、教育机器人擂台、教育机器人游深圳、教育机器人创意设计和制作、微小型群机器人协作和舞蹈、中型组足球机器人竞赛等。
- 2022-01-26 04:24:48下载
- 积分:1
-
随机游走标签排序 图像标签排序 图像处理
图像处理中对图像标签排序,使之有序更符合检索的要求,达到更好的搜索效果。
- 2023-08-09 22:00:26下载
- 积分:1
-
VB图像识别
资源描述VB图像识别VB图像识别VB图像识别VB图像识别VB图像识别VB图像识别VB图像识别VB图像识别
- 2022-08-17 18:45:53下载
- 积分:1
-
在一个圆圈周围的操场上的操场放置氮堆。石头是有…
在一个圆形操场的四周摆放着n堆石子。现要将石子有次序地合并成一堆。规定每次只能选相邻的2堆石子合并成新的一堆,并将新的一堆石子数记为该次合并的得分。试设计一个算法,计算出将n堆石子合并成一堆的最小得分和最大得分。
编程任务:对于给定n堆石子,编程计算合并成一堆的最小得分和最大得分。-Playground in a circle around the stones are placed n heap. Stone is to have the order to merge into a pile. Provisions can only choose 2 adjacent stones piled into a heap of new and new pile of stones a few in mind for its combined score. Try to design an algorithm to calculate the n heap into a pile of stones the minimum scores and maximum scores. Programming tasks: for a given n stack stone, into a pile of programming the calculation of the minimum scores and maximum scores.
- 2022-03-18 23:23:02下载
- 积分:1
-
迷宫算法,求解从起点到终点的迷宫路径,或者得出没有路径的结论。...
迷宫算法,求解从起点到终点的迷宫路径,或者得出没有路径的结论。-Maze algorithm, to solve from the point of origin to the end of the maze path, or there is no path to draw conclusions.
- 2022-09-29 07:20:02下载
- 积分:1
-
cholesky分解 c++
#include
#include
#include
#include
#include
using namespace std;
int main (int argc, char* argv[])
{
cout
- 2022-01-27 16:58:06下载
- 积分:1
-
python 实现用遗传算法优化神经网络权重
神经网络的训练过程中,使用遗传算法来优化神经网络的权重,用于寻找全局最优权重
- 2022-04-27 13:11:45下载
- 积分:1
-
DBSCAN算法
% Function: [class,type]=dbscan(x,k,Eps)
% -------------------------------------------------------------------------
% Aim:
% Clustering the data with Density-Based Scan Algorithm with Noise (DBSCAN)
% -------------------------------------------------------------------------
% Input:
% x - data set (m,n); m-objects, n-variables
% k - number of objects in a neighborhood of an object
% (minimal number of objects considered as a cluster)
% Eps - neighborhood radius, if not known avoid this parameter or put []
% -------------------------------------------------------------------------
% Output:
% class - vector specifying assignment of the i-th object to certain
% cluster (m,1)
% type - vector specifying type of the i-th object
% (core: 1, border: 0, outlier: -1)
- 2022-04-08 08:12:27下载
- 积分:1