资源简介
python的搜索算法,例如深度优先算法,A星算法,其中的h函数可以优化,原文件只采用了欧氏距离。

代码片段和文件信息
# -*- coding: utf-8 -*-
from queue import LifoQueue
from queue import Queue
from queue import PriorityQueue
class Graph:
“““
Defines a graph with edges each edge is treated as dictionary
look up. function neighbors pass in an id and returns a list of
neighboring node
“““
def __init__(self):
self.edges = {}
self.edgeWeights = {}
self.locations = {}
def neighbors(self id):
if id in self.edges:
return self.edges[id]
else:
print(“The node “ id “ is not in the graph“)
return False
# this function get the g(n) the cost of going from from_node to
# the to_node
def get_cost(selffrom_node to_node):
#print(“get_cost for “ from_node to_node)
nodeList = self.edges[from_node]
#print(nodeList)
try:
edgeList = self.edgeWeights[from_node]
return edgeList[nodeList.index(to_node)]
except ValueError:
print(“From node “ from_node “ to “ to_node “ does not exist a direct connection“)
return False
def reconstruct_path(came_from start goal):
“““
Given a dictionary of came_from where its key is the node
character and its value is the parent node the start node
and the goal node compute the path from start to the end
Arguments:
came_from -- a dictionary indicating for each node as the key and
value is its parent node
start -- A character indicating the start node
goal -- A character indicating the goal node
Return:
path. -- A list storing the path from start to goal. Please check
the order of the path should from the start node to the
goal node
“““
path = []
### START CODE HERE ### (≈ 6 line of code)
### END CODE HERE ###
# return path
def heuristic(graph current_node goal_node):
“““
Given a graph a start node and a next nodee
returns the heuristic value for going from current node to goal node
Arguments:
graph -- A dictionary storing the edge information from one node to a list
of other nodes
current_node -- A character indicating the current node
goal_node -- A character indicating the goal node
Return:
heuristic_value of going from current node to goal node
“““
heuristic_value = 0
### START CODE HERE ### (≈ 15 line of code)
### END CODE HERE ###
return heuristic_value
def A_star_search(graph start goal):
“““
Given a graph a start node and a goal node
Utilize A* search algorithm by finding the path from
start node to the goal node
Use early stoping in your code
This function returns back a dictionary storing the information of each node
and its corresponding parent node
Arguments:
graph -- A dictionary storing the edge information from one node to a list
of other nodes
start -- A character ind
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-09-19 16:20 Homework1\
目录 0 2018-09-18 13:45 Homework1\Homework1\
文件 5792 2018-09-18 13:19 Homework1\Homework1\AStarSearch.py
文件 4841 2018-09-18 13:20 Homework1\Homework1\BFSvsDFS.py
文件 157476 2018-09-18 13:44 Homework1\Homework1\homework1.pdf
文件 4722 2018-09-18 13:20 Homework1\Homework1\UniformCostSearch.py
- 上一篇:决策树预测获胜NBA球队
- 下一篇:python与json
相关资源
- 二级考试python试题12套(包括选择题和
- pywin32_python3.6_64位
- python+ selenium教程
- PycURL(Windows7/Win32)Python2.7安装包 P
- 英文原版-Scientific Computing with Python
- 7.图像风格迁移 基于深度学习 pyt
- 基于Python的学生管理系统
- A Byte of Python(简明Python教程)(第
- Python实例174946
- Python 人脸识别
- Python 人事管理系统
- 基于python-flask的个人博客系统
- 计算机视觉应用开发流程
- python 调用sftp断点续传文件
- python socket游戏
- 基于Python爬虫爬取天气预报信息
- python函数编程和讲解
- Python开发的个人博客
- 基于python的三层神经网络模型搭建
- python实现自动操作windows应用
- python人脸识别(opencv)
- python 绘图(方形、线条、圆形)
- python疫情卡UN管控
- python 连连看小游戏源码
- 基于PyQt5的视频播放器设计
- 一个简单的python爬虫
- csv文件行列转换python实现代码
- Python操作Mysql教程手册
- Python Machine Learning Case Studies
- python获取硬件信息
评论
共有 条评论