CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 WEB源码 搜索资源 - idea algorithm

搜索资源列表

  1. heredityArthmetic

    0下载:
  2. 介绍了遗传算法的基本思想,基础结构和应用等-introduced a genetic algorithm basic idea, infrastructure and applications
  3. 所属分类:WEB源码

    • 发布日期:2008-10-13
    • 文件大小:56205
    • 提供者:CGT
  1. A

    0下载:
  2. 这是我根据A*算法,通过javascr ipt实现的最短路径程序。可以说,程序非常糟糕,不过总算是实现了。思路是起点和终点的跑动过程中,我们中间可能会遇到障碍物,所以,我们不能仅仅是两点一直线,而是聪明的饶过障碍物进行聪明的跑动-This is my under the A* algorithm, through the javascr ipt to achieve the shortest path procedure. It can be said that the procedure is
  3. 所属分类:JavaScript

    • 发布日期:2017-04-08
    • 文件大小:2505
    • 提供者:wayne
  1. Maze

    0下载:
  2. 用java写的迷宫代码,注重代码的简洁与易懂,通过算法的基本思想来编写代码-The maze used to write java code, pay attention to the simple and easy to understand code, through the algorithm the basic idea to write code
  3. 所属分类:Java Develop

    • 发布日期:2017-04-04
    • 文件大小:5259
    • 提供者:
  1. sort

    0下载:
  2. 采用JAVA抽象类开发的排序算法 主要体现面向对象的思想,通过重载类的dosort()方法实现-Abstract class using JAVA sorting algorithm developed mainly embodied the idea of object-oriented, by overloading class dosort () method implementation
  3. 所属分类:Java Develop

    • 发布日期:2017-03-31
    • 文件大小:2331
    • 提供者:yohey
  1. PathFinderRedux

    0下载:
  2. The PathFinder application is a look into a number of different areas some of which tend to run into each other these are mostly the topics of Intelligence, Memory, Artificial Life, Swarm Intelligence and Path Finding Algorithms, some of which will b
  3. 所属分类:Java Develop

    • 发布日期:2017-03-30
    • 文件大小:117934
    • 提供者:rk
  1. IDEA

    0下载:
  2. 利用JSF JSP 实现B/S结构的IDEA算法 演示和教学系统-Using JSF JSP to achieve B/S structure of the IDEA algorithm for demonstration and teaching system
  3. 所属分类:Jsp/Servlet

    • 发布日期:2017-05-13
    • 文件大小:3392098
    • 提供者:赵万青
  1. fenci

    0下载:
  2. 前向最大分词算法,翻译软件的最基本思想。用Java语言开发的程序。-Prior to the maximum segmentation algorithm, translation software, the basic idea. Java language programs.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:1655
    • 提供者:白玉娇龙
  1. K-means

    0下载:
  2. kmeans算法, K-means算法是最为经典的基于划分的聚类方法,是十大经典数据挖掘算法之一。K-means算法的基本思想是:以空间中k个点为中心进行聚类,对最靠近他们的对象归类。通过迭代的方法,逐次更新各聚类中心的值,直至得到最好的聚类结果-kmeans algorithm, K-means algorithm is the most classic divide-based clustering method is one of the top ten classical data mi
  3. 所属分类:Java Develop

    • 发布日期:2017-11-25
    • 文件大小:1803
    • 提供者:wsp
  1. Similar-items-finding

    0下载:
  2. shingling算法实现,比较弱,但是思想是对的,对新手可以有些帮助-shingling algorithm is relatively weak, but the idea is right, can help the novice
  3. 所属分类:Java Develop

    • 发布日期:2017-11-10
    • 文件大小:164984
    • 提供者:zhang
  1. HuaRongDao

    0下载:
  2. 采用A*算法解决华容道问题,参考了网上的棋局编码思想,算法效率有较大的提高。请用netbeans打开项目-Huarong using A* algorithm to solve the problem, refer to the online chess game coding idea, has greatly improved the efficiency of the algorithm
  3. 所属分类:Java Develop

    • 发布日期:2017-05-09
    • 文件大小:1828886
    • 提供者:陈锐均
  1. bankers-algorithm

    0下载:
  2. 用JAVA实现的银行家算法的核心思想(非完整版)-JAVA implementation with the core idea of the banker s algorithm (non-full version)
  3. 所属分类:Java Develop

    • 发布日期:2017-04-26
    • 文件大小:355595
    • 提供者:zhaosj123
  1. java_code_json

    0下载:
  2. java 编程之美,其中有多个算法实例,以及思路讲解,可以领略算法的高度-java programming of the United States, where there are multiple instances of the algorithm, as well as to explain the idea, you can enjoy a high degree of Algorithms
  3. 所属分类:Java Develop

    • 发布日期:2017-05-17
    • 文件大小:4475545
    • 提供者:wang
  1. CheckMatcher

    0下载:
  2. Match and Partial Match for Regular Expression. The main idea of the algorithm is to get all substrings of the given regular expression Regex and to apply the method hitEnd() of the class java.util.regex.Matcher. If the examined string Input matches
  3. 所属分类:Java Develop

    • 发布日期:2017-04-15
    • 文件大小:4926
    • 提供者:Rafael
  1. RandomForest

    0下载:
  2. 随机森林是由多棵树组成的分类或回归方法。主要思想来源于Bagging算法,Bagging技术思想主要是给定一弱分类器及训练集,让该学习算法训练多轮,每轮的训练集由原始训练集中有放回的随机抽取,大小一般跟原始训练集相当,这样依次训练多个弱分类器,最终的分类由这些弱分类器组合,对于分类问题一般采用多数投票法,对于回归问题一般采用简单平均法。随机森林在bagging的基础上,每个弱分类器都是决策树,决策树的生成过程中中,在属性的选择上增加了依一定概率选择属性,在这些属性中选择最佳属性及分割点,传统做法
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:1164
    • 提供者:小代
  1. Structure_Algorithm

    0下载:
  2. 算法与数据结构java语言描述,源代码整理,IntelliJ idea 运行-Structrue and Algorithm Java language source code
  3. 所属分类:Java Develop

    • 发布日期:2017-05-04
    • 文件大小:31242
    • 提供者:杨过
  1. Kmeans

    1下载:
  2. 算法思想:提取文档的TF/IDF权重,然后用余弦定理计算两个多维向量的距离来计算两篇文档的相似度,用标准的k-means算法就可以实现文本聚类。源码为java实现(Algorithm idea: extract the TF/IDF weight of the document, then calculate the distance between two multidimensional vectors by cosine theorem, calculate the similarity
  3. 所属分类:Java编程

    • 发布日期:2018-01-08
    • 文件大小:15360
    • 提供者:startrek
搜珍网 www.dssz.com