-
使用递归实现的快速排序法
使用递归实现的快速排序法-Quick sort using recursive
- 2022-08-04 11:35:02下载
- 积分:1
-
蚁群算法中有关算法参数的最优选择对蚁群算法的具体参数的选择,达到快的收敛速度和好的仿真效果...
蚁群算法中有关算法参数的最优选择对蚁群算法的具体参数的选择,达到快的收敛速度和好的仿真效果-Ant colony algorithm parameters relating to the optimal algorithm of ant colony algorithm to choose the specific choice of parameters to achieve faster convergence speed and a good simulation of the effect of
- 2022-03-21 18:13:58下载
- 积分:1
-
利用柏松方程计算温度分布。实际的算法为有限元法。
利用柏松方程计算温度分布。实际的算法为有限元法。-use equation to calculate the temperature distribution. The actual algorithm for finite element method.
- 2022-07-25 15:01:27下载
- 积分:1
-
VB 代码操作的块密码模式
转换大多数的VB6 代码到手册中的示例VB.
- 2022-03-17 21:00:53下载
- 积分:1
-
利用MATLAB求解TSP的蚁群
应用背景蚁群算法解决问题,最近有很好的潜力已经吸引了很多的关注,特别是求解NP难的问题关键技术
- 2022-03-22 18:51:00下载
- 积分:1
-
素数环: 把从1到10这10个数摆成一个环,要求相邻的两个数的和是一个素数。 〖问题分析〗 这是一道回溯的题目。从1开始,每个空位有9种可能,每种可能加入约束...
素数环: 把从1到10这10个数摆成一个环,要求相邻的两个数的和是一个素数。 〖问题分析〗 这是一道回溯的题目。从1开始,每个空位有9种可能,每种可能加入约束条件即可
1.与前面所有的数不重复
2.与前一个数和为素数(最后一个和第一个也要满足)。 〖算法流程〗 1、数据初始化; 2、递归填数: 判断第J种可能是否合法; A、如果合法:填数;判断是否到达目标(10个已填完): 是,打印结果;不是,递归填下一个; B、如果不合法:选择下一种可能;-Prime Central: 1-10 from 10 the number of put this into a ring, asked the two adjacent numbers and is a prime number. 〗 〖Analysis is a retrospective this topic. From 1 year, 9 out of every space possible, each may be bound by the conditions of accession to 1. And in front of all the number of non-repetition, 2. With a few and for a prime number (the last and the first to meet). 1〗 〖algorithm processes the data to initialize 2, fill in the number of recursion: first to determine the legality of J possible A, if the legitimate: the number of Reclamation to determine whether the target (10 have been completed): Yes, print the results of not, fill in the next recursive B, if not legitimate: a possible alternative
- 2022-03-13 12:39:07下载
- 积分:1
-
《数据结构》所有相关程序的算法。有图、数组以及二叉数的问题。附有程序及结果。...
《数据结构》所有相关程序的算法。有图、数组以及二叉数的问题。附有程序及结果。-"data structure" all procedures relating to the algorithm. A map, and two arrays fork a few problems. With procedures and results.
- 2022-01-26 06:59:41下载
- 积分:1
-
FPGA驱动VGA 显示图片
FPGA驱动VGA 显示图片的完整代码,经测试可用,ROM中已经保存有一个图片的rgb信息,大家也可以更改图片,去网上下载一个RGB提取的程序就可以了,把图片rgb信息保存在ROM里-FPGA VGA CODE
- 2022-07-17 03:03:05下载
- 积分:1
-
项目实施的堆
函数和过程:
1.Heapify
2.建堆
3.插入
4.提取最大
5.增加的关键
6.初始化
7.打印堆
从文件堆成 8.读取文本)
- 2023-02-08 06:50:03下载
- 积分:1
-
使用快速排序法对一位数组进行排序
快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。
- 2022-08-09 14:10:19下载
- 积分:1