搜索资源列表
Caeser.java
- 1.凯撒密码的盲目搜索 2.凯撒密码的启发示搜索1 3.凯撒密码的启发示搜索2 -1. Caesar password blindly Search 2. Caesar said password inspired Search 1 3. Caesar said password inspired Search 2
Substituter.java
- 代入法的启发示搜索 我的代码实现是:按照自然语言各字母出现频率的大小从高到低(已经有人作国统计分析了)先生成一张字母出现频率统计表(A)--------(e),(t,a,o,i,n,s,h,r),(d,l),(c,u,m,w,f,g,y,p,b),(v,k,j,x,q,z) ,再对密文字母计算频率,并按频率从高到低生成一张输入密文字母的统计表(B),通过两张表的对应关系,不断用A中的字母去替换B中的字母,搜索不成功时就回退,在这里回朔是一个关键。 -generation into a
depth_first_search
- JAVA 深度優先搜索實例 JAVA Depath First Search-JAVA depth-first search examples JAVA Depath First Search
TS-TSP.rar
- 使用禁忌搜索算法求解TSP(旅行商问题)的JAVA源程序,The use of tabu search algorithm for solving TSP (Traveling Salesman Problem) the JAVA source code
bPlusTree
- B+树,用JAVA语句实现了一个B+树,包括B+树的构成,B+树的增删查改-B+ tree, using JAVA statement to achieve a B+ tree, including the composition of B+ tree, B+ tree of additions and deletions to change search
src
- PKU中一些数据结构基本算法题的java实现,包括DIJ、PRIM、二叉查找树、并查集、动态规划、KMP、匈牙利算法、深搜广搜等-PKU some basic data structure algorithm java realization of the title, including DIJ, PRIM, binary search tree, and search sets, dynamic programming, KMP, the Hungarian algorithm, colle
SimpleOpenTSTutorial
- TabuSearch的一个小程序。用禁忌搜索解决TSP问题,程序中使用对路径长度禁忌的方法。-TabuSearch a small program. Using tabu search to solve TSP problems, procedures used on the path length taboo method.
dijkstra-java
- Dijkstra算法是典型的最短路算法,用于计算一个节点到其他所有节点的最短路径。主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。 Dijkstra算法能得出最短路径的最优解,但由于它遍历计算的节点很多,所以效率低。Dijkstra算法是一种逐步搜索算法,通过为每个顶点n保留目前为止所找到的从m到n的最短路径来工作的。 -Dijkstra algorithm is a typical example of the most short-circuit algorithm, used
K-Means.Algorithm
- 算法,k-mean搜索方法,执行起来很快,推荐。-Algorithm, k-mean search methods, to implement quickly, recommended.
JavaGenes.0.7.28.tar
- JavaGenes is an evolutionary software system written in Java. It implements the genetic algorithm, simulated annealing, stochastic hill climbing and other search techniques.-JavaGenes is an evolutionary software system written in Java. It implements
BFS
- 广度优先搜索算法分析;供程序设计人员使用-Breadth-first search algorithm analysis for programmers to use
EightPazzelBfs
- This project solve 8 puzzle with breadth first search. I wrote this program for Artificial Intelligence lesson.
genetic(java)
- 遗传算法具有全局搜索的功能,能够克服K-means算法的缺点。-Genetic algorithm global search function to overcome the shortcomings of K-means algorithm.
binarysearchtree
- Binary Search Tree with Node class.-Binary Search Tree with Node class.
rbtree
- 实现红黑树的相关算法,红黑树、二叉搜索树的实现和性能比较-Red-black tree, binary search tree implementation and performance comparison
java仓库管理系统
- 仓库管理系统,用JAVA做的,使用的数据库软件是MYSQL 课程设计内容一共有管理表格四张,包含曾删改功能;查询表格六张,包含精确查找和模糊查找。含有登陆功能,先登陆后出现主界面,登陆有三个权限。压缩包里包含JAVA源文件和数据库,导入就可使用。-Warehouse management system, using JAVA to do, use a MYSQL database software course design content management table, a total o
Search
- 两个搜索算法的实现,一、顺序搜索;二、二叉搜索(折半搜索),使用java实现-Two search algorithm implemented, a, sequential search Second, binary search (binary search), use Java implementation
GA-java
- 遗传算法的java版本,可用作java游戏开发中做搜索算法-Java version of the genetic algorithm, do a search algorithm can be used as a java game development
spatialindex-JAVA
- JAVA实现的R树,提供高效的低维空间搜索性能-Java implemented R-tree,whose performance on low dimension spatial search is quite high
Problem1
- Binary searching java code