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

搜索资源列表

  1. EightDigits

    0下载:
  2. 八数码,启发式,曼哈顿距离,A*算法实现-Eight digital, heuristic, Manhattan distance, A* algorithm
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-13
    • 文件大小:3458
    • 提供者:delia
  1. DistanceTransform

    0下载:
  2. 距离变换,用chamfer方法,实现栅格距离变换、曼哈顿距离变换和棋盘距离变换-Distance transform method with a chamfer distance transform of Grid, Manhattan distance and the chessboard distance transform transformation
  3. 所属分类:GIS program

    • 发布日期:2017-03-28
    • 文件大小:37036
    • 提供者:bo
  1. EightPuzzle

    0下载:
  2. Solve the 8-puzzle problem using A * algorithme. Input: Program reads start state and goal state and heuristic (N or S) from EightPuzzle.INP file.0 representing blank. There are 2 Heuristic: 1. N: Number of misplaced tiles 2. S: Sum o
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-01
    • 文件大小:1830
    • 提供者:Duc Dung
  1. eightpuzzle

    0下载:
  2. eight puzzle using RBFS and A* search and manhattan distance heuristic function
  3. 所属分类:Java Develop

    • 发布日期:2017-03-27
    • 文件大小:19399
    • 提供者:sam
  1. 8puzzle

    0下载:
  2. 8 puzzle是西人喜欢玩的一个小游戏,这段小程序用四种人工智能算法来实现这个小游戏。 首先是A*查找,包括Nilsson’s sequence score;Tiles Out of Place;Manhattan Distance;另外还有一种算法是air distance-8 puzzle a foreigner like to play a little game, this small program with four kinds of artificial intelligen
  3. 所属分类:Java Develop

    • 发布日期:2017-04-16
    • 文件大小:13525
    • 提供者:julian
  1. Manhattan_distance.py

    0下载:
  2. The compute of Manhattan Distance
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-01
    • 文件大小:523
    • 提供者:jjl
  1. FindRouteGUI

    0下载:
  2. 1,已完成功能 (1)距离短时大部分情况下可以选择最短路径进行移动 (2)加入了精英选择优化算法 (3)无论地图大小一定可以得出路径 (4)点击障碍物可以得出路径 3,代码改进 将原来两大类(Widget,Geno)拆分成三个类(Widget,Handle,Geno), Widget:显示界面等可视化元素,获取最短路径并显示移动, Handle:优化路径,得出最短路径,以后会加入通信模块 Geno:计算得出一定数量的可达路径 4,算法描述
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-08
    • 文件大小:10699
    • 提供者:chan
  1. jvzhen

    0下载:
  2. Descr iption 给定一个r * c的只包含0和1两个数字的矩阵,对于矩阵中任意一点(x,y),定义(x,y)的权为(x,y)到与此点曼哈顿距离最小的1的曼哈顿距离(如果mat[x][y] = 1,则(x,y)的权为0)。请求出对于给定01矩阵中所有点的权值之和。 Input 输入包含多组数据,每组数据第一行为两个整数r, c(0 < r, c < = 1000)。 接下来 r 行每行有 c 个整数,且保证只能为0或者1(保证矩阵中含有至少
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2016-01-26
    • 文件大小:1024
    • 提供者:罗洛
  1. eightNum_lufeiop

    0下载:
  2. 以八数码问题为例,设计一类滑块问题的求解系统,初步掌握智能搜索算法中的盲目搜索和启发式搜索这两类基本方法,同时通过具体的问题体会搜索算法、数据结构、程序设计等知识的综合应用 A*用到是不在位将牌数和曼哈顿距离,动态显示,有算时间 我自己很用心做的,有实验报告,绝对详细-Eight digital issues, for example, design a slider problem solving system, initially grasp the two basic method
  3. 所属分类:Data structs

    • 发布日期:2017-05-14
    • 文件大小:3544349
    • 提供者:陆飞
  1. ANN_1.1.2(Newest-Vision-2010-1-27)-

    1下载:
  2. ANN是一个构造数据索引结果的程序,可以实现最近邻、KD树等功能。ANN is designed for data sets that are small enough that the search structure can be stored in main memory (in contrast to approaches from databases that assume that the data resides in secondary storage). Points ar
  3. 所属分类:AI-NN-PR

    • 发布日期:2015-10-09
    • 文件大小:999424
    • 提供者:fhqu
  1. pathfinding-0.1.1-win32-dist

    0下载:
  2. Curently five algorithms are included: 1. A* (using Manhattan distance) 2. A* (using Euclidean distance) 3. A* (using Chebyshev distance) 4. Dijkstra 5. Bi-Directional Breadth-First-Search- Curently five algorithms are included:
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-07
    • 文件大小:6439219
    • 提供者:lishanmin
  1. PuzzleSolver

    0下载:
  2. 8/15-Puzzle Solver Algorithm: IDA*, A* Heuristic: Pattern Database, Manhattan Distance
  3. 所属分类:Jsp/Servlet

    • 发布日期:2017-05-20
    • 文件大小:5741675
    • 提供者:David Hwang
  1. 01

    0下载:
  2. Descr iption 给定一个r * c的只包含0和1两个数字的矩阵,对于矩阵中任意一点(x,y),定义(x,y)的权为(x,y)到与此点曼哈顿距离最小的1的曼哈顿距离(如果mat[x][y] = 1,则(x,y)的权为0)。请求出对于给定01矩阵中所有点的权值之和。 所谓曼哈顿距离——两点在南北方向上的距离加上在东西方向上的距离,即D(I,J)=|XI-XJ|+|YI-YJ|。对于一个具有正南正北、正东正西方向规则布局的城镇街道,从一点到达另一点的距离正是在南北方向上旅
  3. 所属分类:CSharp

    • 发布日期:2017-04-07
    • 文件大小:668
    • 提供者:hd
  1. EightPuzzle

    0下载:
  2. Eight Puzzle with A* and Manhattan Distance
  3. 所属分类:Games

    • 发布日期:2017-04-17
    • 文件大小:50903
    • 提供者:Maya inc
  1. UVALive4849

    0下载:
  2. uvalive4849的ac源码。算法:2-sat。题意:给n(n<=3000)个黑方块的坐标,保证黑方块没有公共边。对于每个黑方块选一个角作为结点,使得所选结点满足输入的一个无向图。其中距离为曼哈顿距离。输出是否有解。possible或impossible。-AC source of uvalive 4849. Algorithms: 2-sat. Meaning of the questions: to n (n <= 3000) coordinates a black box,
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1621
    • 提供者:郑泽彬
  1. getTheRightPosition

    0下载:
  2. 需要在一个N × M的网格中建立一个通讯基站,通讯基站仅必须建立在格点上。 网格中有A个用户,每个用户的通讯代价是用户到基站欧几里得距离的平方。 网格中还有B个通讯公司,维护基站的代价是基站到最近的一个通讯公司的路程(路程定义为曼哈顿距离)。 在网格中建立基站的总代价是用户通讯代价的总和加上维护基站的代价,最小总代价。-The need to establish a communications base in an N × M grid, communicatio
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:656
    • 提供者:邹业
  1. Desktop

    0下载:
  2. 在一个平面上有n(1<=n<=100000)个村庄,每个村庄通过坐标(xi,yi)标示位置,-10^9<=xi,yi<=10^9。现在想要建一个邮局,使得到各个村庄的距离之和最短。 在这个问题中,距离定义为曼哈顿距离,即点i和点j的距离等于|xi-xj|+|yi-yj| 输入: 输入第一行为n,表示村庄的数量 接下来n行每行有两个整数,表示一个村庄的坐标 输出: 输出一个数字,表示建立的邮局到各个村庄的和
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1307
    • 提供者:
  1. Cluster_K-means

    1下载:
  2. k中心算法的基本过程是:首先为每个簇随意选择一个代表对象,剩余的对象根据其与每个代表对象的距离(此处距离不一定是欧氏距离,也可能是曼哈顿距离)分配给最近的代表对象所代表的簇;然后反复用非代表对象来代替代表对象,以优化聚类质量。聚类质量用一个代价函数来表示。当一个中心点被某个非中心点替代时,除了未被替换的中心点外,其余各点被重新分配。-The basic process k center algorithm is: First free to choose a delegate object fo
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-13
    • 文件大小:2896358
    • 提供者:闫鑫
  1. k_nn

    0下载:
  2. kNN的思想:计算待分类的数据点与训练集所有样本点,取距离最近的k个样本;统计这k个样本的类别数量;根据多数表决方案,取数量最多的那一类作为待测样本的类别。距离度量可采用Euclidean distance,Manhattan distance和cosine。-kNN The idea is simple: the training set and calculated data points to be classified all sample points taken the neare
  3. 所属分类:Data Mining

    • 发布日期:2017-04-12
    • 文件大小:998
    • 提供者:王志坦
  1. Proposed_code

    0下载:
  2. Image classification using RBFSVM and Manhattan distance. It detects face and eye. Face detection using Viola jones.
  3. 所属分类:Other systems

    • 发布日期:2017-05-11
    • 文件大小:2183783
    • 提供者:techies
« 12 »
搜珍网 www.dssz.com