搜索资源列表
Java
- 一些很经典的算法!!!包括八皇后问题和背包问题,排列组合问题和数字拆分问题等.-Algorithm for some very classic! ! ! Including the eight queens problem and the knapsack problem, permutation and combination problems and digital split issues.
The-dynamic-programming
- 用动态规划算法,JAVA实现:给定n个整数组成的序列,现在要求将序列分割为m段,每段子序列中的数在原序列中连续排序。如何分割才能使这m段子序列的和的最大值达到最小?-Using dynamic programming algorithm, JAVA implementation: the composition of a given sequence of n integers, now requires the sequence is divided into m segments, the
CityOutline
- 用java语言编写的求城市轮廓线的程序,使用了分置算法,这个程序的算法是《算法引论—一种创造性方法》中的算法-Written request with the city java contour, the use of the split algorithm, the algorithm of this program is the " Introduction to Algorithms- A creative approach" in the algorithm
SCAN
- SCAN算法,从超大图中分割出密集的结构聚类算法-SCAN algorithm, split a dense structure from large graph clustering algorithm
Split
- Java实现逆向最大匹配中文分词算法,本程序可以实现较为简单的中文分词-Java implementation reverse maximum matching Chinese word segmentation algorithm, the program can be implemented relatively simple Chinese word segmentation
src
- 一个功能强大的字符串裂解类,可以用于解释器程序,词法分析程序的前身。你还为java的split功能有限而苦恼吗,你还为可恶的正则表达式的复杂度和健壮性而苦恼吗。该类可以满足你的需求,可以以包含,排除两种方式裂解,可以包含分隔符,不包含分隔符,可以区分大小写,也可以不区分,总之,基本可以满足大部分需求了,注意该算法只考虑功能强大,不考虑效率问题,不一定能够适合大规模批量生产。理解示例: 原字符串:12a345B67cc890 规则符:a,b,cc 裂解方式:包含分隔符,区分大小写
Conversion13748182016
- Conversion of Algorithm to Quick sort code Code Modules 1) Reading and displaying the array of elements to sort 2) Finding the pivot element(element for splitting into left and right),i mean the split element 3)Partitioning the elements 4)Recursive
RandomForest
- 随机森林是由多棵树组成的分类或回归方法。主要思想来源于Bagging算法,Bagging技术思想主要是给定一弱分类器及训练集,让该学习算法训练多轮,每轮的训练集由原始训练集中有放回的随机抽取,大小一般跟原始训练集相当,这样依次训练多个弱分类器,最终的分类由这些弱分类器组合,对于分类问题一般采用多数投票法,对于回归问题一般采用简单平均法。随机森林在bagging的基础上,每个弱分类器都是决策树,决策树的生成过程中中,在属性的选择上增加了依一定概率选择属性,在这些属性中选择最佳属性及分割点,传统做法
