A*(A星)算法Go lang实现

a*

A算法,A(A-Star)算法是一种静态路网中求解最短路径最有效的直接搜索方法,也是解决许多搜索问题的有效算法。算法中的距离估算值与实际值越接近,最终搜索速度越快。
A* (A-Star)算法是一种静态路网中求解最短路径最有效的直接搜索方法,也是许多其他问题的常用启发式算法。注意——是最有效的直接搜索算法,之后涌现了很多预处理算法(如ALT,CH,HL等等),在线查询效率是A*算法的数千甚至上万倍。
公式表示为: f(n)=g(n)+h(n),
其中, f(n) 是从初始状态经由状态n到目标状态的代价估计,
g(n) 是在状态空间中从初始状态到状态n的实际代价,
h(n) 是从状态n到目标状态的最佳路径的估计代价。
(对于路径搜索问题,状态就是图中的节点,代价就是距离)
h(n)的选取
保证找到最短路径(最优解的)条件,关键在于估价函数f(n)的选取(或者说h(n)的选取)。
我们以d(n)表达状态n到目标状态的距离,那么h(n)的选取大致有如下三种情况:

  • 如果h(n)< d(n)到目标状态的实际距离,这种情况下,搜索的点数多,搜索范围大,效率低。但能得到最优解。
  • 如果h(n)=d(n),即距离估计h(n)等于最短距离,那么搜索将严格沿着最短路径进行, 此时的搜索效率是最高的。
  • 如果 h(n)>d(n),搜索的点数少,搜索范围小,效率高,但不能保证得到最优解。

A*同样可以用于其他搜索问题,只需要对应状态和状态的距离即可。

package main

import (
        "container/heap"
        "fmt"
        "math"
        "strings"
)
import "strconv"

type OpenList []*_AstarPoint

func (self OpenList) Len() int           { return len(self) }
func (self OpenList) Less(i, j int) bool { return self[i].fVal < self[j].fVal }
func (self OpenList) Swap(i, j int)      { self[i], self[j] = self[j], self[i] }

func (this *OpenList) Push(x interface{}) {
        // Push and Pop use pointer receivers because they modify the slice's length,
        // not just its contents.
        *this = append(*this, x.(*_AstarPoint))
}

func (this *OpenList) Pop() interface{} {
        old := *this
        n := len(old)
        x := old[n-1]
        *this = old[0 : n-1]
        return x
}


type _Point struct {
        x    int
        y    int
        view string
}

//========================================================================================

// 保存地图的基本信息
type Map struct {
        points [][]_Point
        blocks map[string]*_Point
        maxX   int
        maxY   int
}

func NewMap(charMap []string) (m Map) {
        m.points = make([][]_Point, len(charMap))
        m.blocks = make(map[string]*_Point, len(charMap)*2)
        for x, row := range charMap {
                cols := strings.Split(row, " ")
                m.points[x] = make([]_Point, len(cols))
                for y, view := range cols {
                        m.points[x][y] = _Point{x, y, view}
                        if view == "X" {
                                m.blocks[pointAsKey(x, y)] = &m.points[x][y]
                        }
                } // end of cols
        } // end of row

        m.maxX = len(m.points)
        m.maxY = len(m.points[0])

        return m
}

func (this *Map) getAdjacentPoint(curPoint *_Point) (adjacents []*_Point) {
        if x, y := curPoint.x, curPoint.y-1; x >= 0 && x < this.maxX && y >= 0 && y < this.maxY {
                adjacents = append(adjacents, &this.points[x][y])
        }
        if x, y := curPoint.x+1, curPoint.y-1; x >= 0 && x < this.maxX && y >= 0 && y < this.maxY {
                adjacents = append(adjacents, &this.points[x][y])
        }
        if x, y := curPoint.x+1, curPoint.y; x >= 0 && x < this.maxX && y >= 0 && y < this.maxY {
                adjacents = append(adjacents, &this.points[x][y])
        }
        if x, y := curPoint.x+1, curPoint.y+1; x >= 0 && x < this.maxX && y >= 0 && y < this.maxY {
                adjacents = append(adjacents, &this.points[x][y])
        }
        if x, y := curPoint.x, curPoint.y+1; x >= 0 && x < this.maxX && y >= 0 && y < this.maxY {
                adjacents = append(adjacents, &this.points[x][y])
        }
        if x, y := curPoint.x-1, curPoint.y+1; x >= 0 && x < this.maxX && y >= 0 && y < this.maxY {
                adjacents = append(adjacents, &this.points[x][y])
        }
        if x, y := curPoint.x-1, curPoint.y; x >= 0 && x < this.maxX && y >= 0 && y < this.maxY {
                adjacents = append(adjacents, &this.points[x][y])
        }
        if x, y := curPoint.x-1, curPoint.y-1; x >= 0 && x < this.maxX && y >= 0 && y < this.maxY {
                adjacents = append(adjacents, &this.points[x][y])
        }
        return adjacents
}

func (this *Map) PrintMap(path *SearchRoad) {
        fmt.Println("map's border:", this.maxX, this.maxY)
        for x := 0; x < this.maxX; x++ {
                for y := 0; y < this.maxY; y++ {
                        if path != nil {
                                if x == path.start.x && y == path.start.y {
                                        fmt.Print("S")
                                        goto NEXT
                                }
                                if x == path.end.x && y == path.end.y {
                                        fmt.Print("E")
                                        goto NEXT
                                }
                                for i := 0; i < len(path.TheRoad); i++ {
                                        if path.TheRoad[i].x == x && path.TheRoad[i].y == y {
                                                fmt.Print("*")
                                                goto NEXT
                                        }
                                }
                        }
                        fmt.Print(this.points[x][y].view)
                NEXT:
                }
                fmt.Println()
        }
}

func pointAsKey(x, y int) (key string) {
        key = strconv.Itoa(x) + "," + strconv.Itoa(y)
        return key
}

//========================================================================================

type _AstarPoint struct {
        _Point
        father *_AstarPoint
        gVal   int
        hVal   int
        fVal   int
}

func NewAstarPoint(p *_Point, father *_AstarPoint, end *_AstarPoint) (ap *_AstarPoint) {
        ap = &_AstarPoint{*p, father, 0, 0, 0}
        if end != nil {
                ap.calcFVal(end)
        }
        return ap
}

func (this *_AstarPoint) calcGVal() int {
        if this.father != nil {
                deltaX := math.Abs(float64(this.father.x - this.x))
                deltaY := math.Abs(float64(this.father.y - this.y))
                if deltaX == 1 && deltaY == 0 {
                        this.gVal = this.father.gVal + 10
                } else if deltaX == 0 && deltaY == 1 {
                        this.gVal = this.father.gVal + 10
                } else if deltaX == 1 && deltaY == 1 {
                        this.gVal = this.father.gVal + 14
                } else {
                        panic("father point is invalid!")
                }
        }
        return this.gVal
}

func (this *_AstarPoint) calcHVal(end *_AstarPoint) int {
        this.hVal = int(math.Abs(float64(end.x-this.x)) + math.Abs(float64(end.y-this.y)))
        return this.hVal
}

func (this *_AstarPoint) calcFVal(end *_AstarPoint) int {
        this.fVal = this.calcGVal() + this.calcHVal(end)
        return this.fVal
}

//========================================================================================

type SearchRoad struct {
        theMap  *Map
        start   _AstarPoint
        end     _AstarPoint
        closeLi map[string]*_AstarPoint
        openLi  OpenList
        openSet map[string]*_AstarPoint
        TheRoad []*_AstarPoint
}

func NewSearchRoad(startx, starty, endx, endy int, m *Map) *SearchRoad {
        sr := &SearchRoad{}
        sr.theMap = m
        sr.start = *NewAstarPoint(&_Point{startx, starty, "S"}, nil, nil)
        sr.end = *NewAstarPoint(&_Point{endx, endy, "E"}, nil, nil)
        sr.TheRoad = make([]*_AstarPoint, 0)
        sr.openSet = make(map[string]*_AstarPoint, m.maxX+m.maxY)
        sr.closeLi = make(map[string]*_AstarPoint, m.maxX+m.maxY)

        heap.Init(&sr.openLi)
        heap.Push(&sr.openLi, &sr.start) // 首先把起点加入开放列表
        sr.openSet[pointAsKey(sr.start.x, sr.start.y)] = &sr.start
        // 将障碍点放入关闭列表
        for k, v := range m.blocks {
                sr.closeLi[k] = NewAstarPoint(v, nil, nil)
        }

        return sr
}

func (this *SearchRoad) FindoutRoad() bool {
        for len(this.openLi) > 0 {
                // 将节点从开放列表移到关闭列表当中。
                x := heap.Pop(&this.openLi)
                curPoint := x.(*_AstarPoint)
                delete(this.openSet, pointAsKey(curPoint.x, curPoint.y))
                this.closeLi[pointAsKey(curPoint.x, curPoint.y)] = curPoint

                //fmt.Println("curPoint :", curPoint.x, curPoint.y)
                adjacs := this.theMap.getAdjacentPoint(&curPoint._Point)
                for _, p := range adjacs {
                        //fmt.Println("\t adjact :", p.x, p.y)
                        theAP := NewAstarPoint(p, curPoint, &this.end)
                        if pointAsKey(theAP.x, theAP.y) == pointAsKey(this.end.x, this.end.y) {
                                // 找出路径了, 标记路径
                                for theAP.father != nil {
                                        this.TheRoad = append(this.TheRoad, theAP)
                                        theAP.view = "*"
                                        theAP = theAP.father
                                }
                                return true
                        }

                        _, ok := this.closeLi[pointAsKey(p.x, p.y)]
                        if ok {
                                continue
                        }

                        existAP, ok := this.openSet[pointAsKey(p.x, p.y)]
                        if !ok {
                                heap.Push(&this.openLi, theAP)
                                this.openSet[pointAsKey(theAP.x, theAP.y)] = theAP
                        } else {
                                oldGVal, oldFather := existAP.gVal, existAP.father
                                existAP.father = curPoint
                                existAP.calcGVal()
                                // 如果新的节点的G值还不如老的节点就恢复老的节点
                                if existAP.gVal > oldGVal {
                                        // restore father
                                        existAP.father = oldFather
                                        existAP.gVal = oldGVal
                                }
                        }

                }
        }

        return false
}

//========================================================================================

func main() {
        presetMap := []string{
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                "X . X X X X X X X X X X X X X X X X X X X X X X X X X",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                "X X X X X X X X X X X X X X X X X X X X X X X X . X X",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
                ". . . . . . . . . . . . . . . . . . . . . . . . . . .",
        }
        m := NewMap(presetMap)
        m.PrintMap(nil)

        searchRoad := NewSearchRoad(0, 0, 18, 10, &m)
        if searchRoad.FindoutRoad() {
                fmt.Println("找到了, 你看!")
                m.PrintMap(searchRoad)
        } else {
                fmt.Println("找不到路径!")
        }
}

原文地址:http://www.byteedu.com/forum.php?mod=viewthread&tid=436&page=1&extra=#pid552

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352