搜索资源列表
psoJAVACVB
- 粒子群算法源码,java,c,vb,粒子群优化PSO程序包(Java,C,VB) -PSO source, java, c, vb, PSO PSO Pack (Java, C, VB)
SDES
- SDES算法源码-SDES algorithm source code
SomeAlgorithmsSourceCodeInJava
- 算法源码集合:有hash表、笛卡尔集、哈弗曼树、矩阵乘法、快速排序-algorithm source code pool : hash tables, Descartes sets, Hafuman tree, matrix multiplication, fast scheduling, etc.
c
- C++经典数值算法源码, 包括线性代数方程组的求解,\\数学变换与滤波等
用贪心算法解决旅行商问题
- 用贪心算法解决旅行商问题,能运行的,是本科四年级的软件课程设计源码!,Use greedy algorithm to solve traveling salesman problem, will be able to run is the fourth year undergraduate curriculum design of the software source code!
垃圾邮件过滤器Java源码
- 垃圾邮件过滤器Java源码 本软件基于朴素贝叶斯算法,用NetBean生成的界面(须JDK1.6),适用于对手机短信,邮箱邮件,日记等一些txt文件进行分类,测试率达90%以上。在这里我非常感谢我的网络老师郑伟!希望大家多多提意见哦,Spam filters Java source code of this software is based on Naive Bayes algorithm, using NetBeans generated interface (to be JDK1.6),
softShop.rar
- B2C的网上商城 三层开发 完整源码 无任何加密算法,b2c softshop
DistanceVectorRouter
- 一份模拟距离向量算法的Java语言源码 基于距离向量算法的路由器设计与实现-Simulation of Distance Vector Routing
pipe-eval
- 今天为网友提供的是JAVA源码,全球著名IT公司ILog的APS高级排产优化引擎,就连SAP、Oracle等ERP中的物料需求计划与生产计划算法都来源于ILog。APS高级排产系统我研究了好久,中间的性线求解算法可真谓难呀。其中tutorialcndlg.htm是帮助文件,src下是源代码。希望版主能给我几千分,我也想参考一下这里的几个系统。下面还会有销售性线预测系统与运输车辆优化系统。 -Provided for users today is the JAVA source code,
J2ME3D
- j2me 3D 游戏开发详解源码,本书详细讲解了JSR-184提供的API,重点讲述了纹理、雾化、变换矩阵、投影(目标摄影机和自由摄影机)、帧动画、Morphing变形体和Skinned变形体等关键技术,同时还阐述了投影矩阵的推导、动画的插值算法、变换矩阵的运算和使用。-j2me 3D game develop
Weka3.7
- 伟大的数据挖掘软件weka3.7.rar在Myeclipse环境下的源码导出包,其中包含许多著名的数据挖掘算法源码。-The great data-mining software weka3.7.rar environment in the Myeclipse source export package, which contains many well-known source of data mining algorithms.
cnxiangqi
- 中国象棋源码 蓝牙对战 手机变成,交叉算法,个人对以,人际对弈-Chinese Chess Battle Bluetooth phone into a source, cross algorithm, individuals with, interpersonal public debate
java算法大全源码包
- 含java算法源码包。。。。。。。。。。。。。。。(Containing Java algorithm source package)
常用算法源码
- JAVA基础算法源码,最基础的算法研究源码(Basic algorithm source code)
leetcode
- leetcode源码 每支程序内均有注释表明题目编号和题目内容(The contents of the file are leetcode source code, each file contains the title of the title and the specific content of the title. Use the java language to write and pass the test case.)
SM2&SM3&SM4国密算法java源码
- SM2&SM3&SM4国密算法java源码(SM2&SM3&SM4 national dense algorithm java source code)
源码_俞育峰
- 知识库管理系统,包含源码和数据库。通过maven构建,使用git版本控制和团队合作,采用springmvc+mybatis框架,集成Lucene全文检索,openoffice转化office文档,ffmpeg处理视频文件,red5搭建流媒体服务,基于pageRank、TF-IDF算法提取处理知识点,webmagic爬取数据,itextpdf、poi处理office等。(knowledge base manage,resource and oracle. maven building)
MICO-V0算法源码
- 李纯明教授2014年发表的关于水平集分割的一种新型算法,这是MICO_V0算法的源代码
粒子群算法源码
- 粒子群算法(PSO)属于群智能算法的一种,是通过模拟鸟群捕食行为设计的。假设区域里就只有一块食物(即通常优化问题中所讲的最优解),鸟群的任务是找到这个食物源。鸟群在整个搜寻的过程中,通过相互传递各自的信息,让其他的鸟知道自己的位置,通过这样的协作,来判断自己找到的是不是最优解,同时也将最优解的信息传递给整个鸟群,最终,整个鸟群都能聚集在食物源周围,即我们所说的找到了最优解,即问题收敛。