搜索资源列表
SELECT
- 选择第k小的元素,c语言 partition 要好好看看 理解函数意思
power
- 该程序用于计算幂积,它比普通的连乘方法要快得多,主要是它含有分治的思想。-the procedures used in the calculation of power plot, it more than ordinary continually multiply much faster method, it is the partition containing the idea.
dividemultiply
- 这是一个分治法应用的又一个例子,利用分治技术,做大整数乘法,尤其是几百位数以上的乘法,比一般的方法快很多,仅次于快速傅立叶变换.-This is a partition of the application also an example of the use of the partition, bigger integer multiplication, especially above the median of hundreds of multiplication, than the mu
k-means-and-cure-in-Iris-Data-Set
- 聚类算法实验,采用两种不同类型的聚类算法:基于划分的聚类方法k-means和基于层次的聚类方法CURE,采用的数据集是:Iris Data Set,数据集中共包含150组数据信息。 材料中有详细的说明文档,具体介绍了算法实现的细节,很容易理解-Clustering algorithm experiment, using two different types of clustering algorithm: Partition-based clustering method k-means
ParMetis-3.1.1
- 这是一个科学并行计算中的重要的分区工具, 是著名的明尼苏达大学开发的。-This is a scientific parallel computing important partition tool, developed by the famous University of Minnesota.
freefem3d_1.0pre10.orig.tar
- 这是FreeFem2D的姊妹软件,对于学习有限元程序设计的人来说有很好的参考价值,我在Fedora Core9下编译运行通过(安装很容易),编译后会生成ff3d可执行程序,通过读取描述问题的文件就可以自动剖分/求解等。-This is FreeFem2D s sister software, finite element program for the study and design for those who have a good reference value, I have compi
clustter2
- 最优分割法确定的加权马尔可夫链在降雨量预测中的应用-Optimal Partition Application Development in rainning
duifen
- 数值分析课程中的“对分区间法”的实现,适合初学者适用-Numerical Analysis Course " on inter-partition method" can be realized, suitable for beginners
test
- 设计出的两个任意维数矩阵相乘的三种优化算法,包括矩阵分治和strassen算法-Design of the two matrices of arbitrary dimension of the three optimization algorithms, including matrix algorithm for partition and strassen
k_means
- k-means 算法接受输入量 k ;然后将n个数据对象划分为 k个聚类以便使得所获得的聚类满足:同一聚类中的对象相似度较高;而不同聚类中的对象相似度较小。聚类相似度是利用各聚类中对象的均值所获得一个“中心对象”(引力中心)来进行计算的。-In statistics and machine learning, k-means clustering is a method of cluster analysis which aims to partition n observations into
Hamilton
- 8*8 的国际象棋棋盘上的一只马,恰好走过除起点外的其它 63 个位置各一次,最后回 到起点。这条路线称为一条马的 Hamilton 周游路线。对于给定的 m*n 的国际象棋棋盘,m 和n均为大于5的偶数,且|m-n|≤2,试设计一个分治算法找出一条马的Hamilton周游路线。 编程任务: 对于给定的偶数m,n≥6,且|m-n|≤2,编程计算 m*n 的国际象棋棋盘一条马的Hamilton 周游路线。 Input 输入数据的第一行有2
cc
- 一个最快求中位数的算法,根据快速排序和分治的思想。-Seeking a fastest median algorithm, according to quick sort and the idea of partition.
tri_algebra
- 三角形知道剖分技术,很好用,实现自动剖分。c语言!-Triangles that partition technology, useful, automatic subdivision. c language!
nonuniform_fdtd
- 时域有限差分方法程序,网格为非均匀剖分的-FDTD method program, a non-uniform partition of the grid
yuandaima
- 代码设计 :整数的分划问题。如,对于正整数n=6,可以分划为: 6 5+1 4+2, 4+1+1 3+3, 3+2+1, 3+1+1+1 2+2+2, 2+2+1+1, 2+1+1+1+1 1+1+1+1+1+1+1 -Code design: integer partition problem. For example, for positive integer n = 6, you can partition as follows: 6 5+1 4+2,
Algorithm-analysis-and-design
- 计算机实验室 内容: 1、分治法,maxmin算法 2、动态规划,矩阵连乘 3、贪心法, 1)背包问题,2)装载问题 4、回溯法,N皇后问题的循环结构算法和递归结构算法。-Computer laboratory content: 1, partition method, maxmin algorithm 2, the dynamic planning, LianCheng matrix 3, greedy method, 1) knapsack probl
conjugategradient
- 本程序用共轭梯度法求函数局部极小值。程序包括三个文件,主程序conjugategradient,函数的梯度gradient,以及黄金分割法partition精确求一维搜索极小点变量步长。程序用来求多变量函数的极小值。-This program conjugate gradient method and function of local minima. The program includes three files, the main conjugategradient function gr
KMean
- KMEAN C# In data mining, k-means clustering is a method of cluster analysis which aims to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean. This results in a partitioning of the data sp
partition
- 贪心算法-会场安排问题的源代码 【问题描述】 假设要在足够多的会场里安排一批活动,并希望使用尽可能少的会场。设计一个有效的算法进行安排。 这个问题实际上是著名的图着色问题。若将每一个活动作为图的一个顶点,不相容活动间用边相连。使相邻顶点着有不同颜色的最小着色数,相应于要找的最小会场数。 编程任务:对于给定的 k 个待安排的活动,编程计算使用最少会场的时间表。 【贪心策略】 根据会场安排问题的定义,首先将问题简化为:找出两个活动i和j,若它们满足start
kmeans
- kmeans methode (k-means clustering is a method of cluster analysis which aims to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean)