A*算法入门

    A*算法作为路径规划算法中应用最广泛实用的算法,由于A*算法的算法原理较为简单,网络上能够找到各种各样的学习资料,本文仅对其实现过程进行总结,同时,附上matlab仿真源码及结果图供参考学习。

算法实现过程

A*算法作为一种启发式的寻路算法被广泛应用于解决游戏中以及机器人、无人车、无人机的路径规划问题。该算法的步骤为:

1.    把起始节点添加到openList;

2.    重复如下步骤:

a)    寻找openList当中F值最低的节点,将其称为当前节点;

b)    将该节点从openList中删除,并加入closeList当中;

c)    对于当前节点相邻的8个节点

    *    如果它不可通过或者已在closeList当中,忽略它,反之如下;

    *    如果它不在openList当中,将其添加进去。把当前节点作为它的父节点。同时更新它的F,G和H值。

    *    如果它已经在openList当中,通过判断沿当前节点到它的路径的G值是否更小,若更小,则将当前节点作为它的父节点,同时更新它的F和G值。否则,不做任何操作。

d)    当目标节点已添加到closeList时,路径已被找到;或者没有找到目标节点,此时openList已为空。这时候,路径不存在。以上两种情况结束循环。

3.    路径回归。从目标节点开始,沿着每一个节点的父节点移动至起始节点,形成的路径即为所求路径。

仿真源码

clear,clc

startPosition = [1 5];

goalPosition = [8 8];

findGoal = false;

map = [0 0 0 0 0 0 0 0 0 0;

      0 0 0 1 1 1 0 1 0 0;

      0 0 0 0 0 0 1 0 1 0;

      0 0 0 0 0 1 0 0 1 0;

      0 0 0 0 1 0 0 1 0 0;

      0 0 0 0 0 0 1 0 1 1;

      0 0 1 0 1 0 0 0 0 0;

      0 1 0 0 0 1 0 0 0 0;

      1 0 0 0 0 0 1 0 0 0;

      0 0 0 0 0 0 0 0 0 0;];

[mapRow, mapCol] = size(map);

closeList = struct('row', 0, 'col', 0, 'g', 0, 'h', 0, 'fartherNodeRow', 0, 'fartherNodeCol', 0);

closeListLength = 0;

openList = struct('row', 0, 'col', 0, 'g', 0, 'h', 0, 'fartherNodeRow', 0, 'fartherNodeCol', 0);

openListLength = 0;

direction = [0, -1; -1, -1; -1, 0; -1, 1; 0, 1; 1, 1; 1, 0; 1, -1;];

openList(1).row = startPosition(1);

openList(1).col = startPosition(2);

openListLength = openListLength + 1;

count = 0;

%找到目标或者开启列表已空时退出循环

while (openListLength > 0 || findGoal == true)

    count = count + 1;

%比较f值,更新当前格

    f = openList(1).g + openList(1).h;

    nodePosition = 1;

    for i = 1:openListLength

        if f > openList(i).g + openList(i).h

            f = openList(i).g + openList(i).h;

            nodePosition = i;

        end

    end


%将当前格加入关闭列表,并去掉开启列表中对应的节点

    closeListLength = closeListLength + 1;

    closeList(closeListLength) = openList(nodePosition);

    openList(nodePosition) = [];

    openListLength = openListLength - 1;

%    openListLength = 0;

    if closeList(closeListLength).row == goalPosition(1) && closeList(closeListLength).col == goalPosition(2) 

        findGoal = true;

        break;

    end


%检查相邻格并更新g、h值以及对应的父节点

    for i = 1: 8

        newPosition = [closeList(closeListLength).row, closeList(closeListLength).col] + direction(i, :);


%碰撞检测以及相邻点有效性检测

        if all(newPosition > 0) && newPosition(1) <= mapRow && newPosition(2) <= mapCol && map(newPosition(1), newPosition(2)) ~= 1

            if i == 2

                if map(newPosition(1) + 1, newPosition(2)) == 1 || map(newPosition(1), newPosition(2) + 1) == 1

                    continue;

                end

            end

            if i == 4

                if map(newPosition(1), newPosition(2) - 1) == 1 || map(newPosition(1) + 1, newPosition(2)) == 1

                    continue;

                end

            end

            if i == 6

                if map(newPosition(1), newPosition(2) - 1) == 1 || map(newPosition(1) - 1, newPosition(2)) == 1

                    continue;

                end

            end

            if i == 8

                if map(newPosition(1) - 1, newPosition(2)) == 1 || map(newPosition(1), newPosition(2) + 1) == 1

                    continue;

                end

            end           

            flagCloseList = false;

%关闭列表检测,若已在关闭列表则忽略           

            for j = 1 : closeListLength

                if closeList(j).row == newPosition(1) && closeList(j).col == newPosition(2)

                    flagCloseList = true;

                    break;

                end

            end


            if flagCloseList

                continue;

            end

%若通过检测且不在开启列表中,则将其加入开启列表,并更新父节点       

            flagOpenList = false;

            openListPosition = 0;

            for j = 1 : openListLength

                if openList(j).row == newPosition(1) && openList(j).col == newPosition(2)

                    flagOpenList = true;

                    openListPosition = j;

                    break;

                end

            end


            if flagOpenList == false

                openListLength = openListLength + 1;

                openList(openListLength).row = newPosition(1);

                openList(openListLength).col = newPosition(2);

                if i == 2 || i == 4 || i == 6 || i == 8

                    openList(openListLength).g = closeList(closeListLength).g + 1.4; 

                else

                    openList(openListLength).g = closeList(closeListLength).g + 1; 

                end


                openList(openListLength).h = abs(goalPosition(1) - openList(openListLength).row) + abs(goalPosition(2) - openList(openListLength).col);

                openList(openListLength).fartherNodeRow = closeList(closeListLength).row;

                openList(openListLength).fartherNodeCol = closeList(closeListLength).col;

            else

%若通过检测且已在开启列表中,根据相邻格在路径上的新G值判断是否需要更新相邻格的父节点并重新计算G与H值

                if openList(openListPosition).g > (closeList(closeListLength).g + 1)

                    openList(openListPosition).g = closeList(closeListLength).g + 1;

                    openList(openListPosition).fartherNodeRow = closeList(closeListLength).row;

                    openList(openListPosition).fartherNodeCol = closeList(closeListLength).col;

                end

            end                 

        end

    end

end

%起点终点着色

map(startPosition(1), startPosition(2)) = 128;

map(goalPosition(1), goalPosition(2)) = 70;

%路径回归

pathList = struct('row', 0, 'col', 0, 'g', 0, 'h', 0, 'fartherNodeRow', 0, 'fartherNodeCol', 0);

pathListLength = 0;

pathPosition = 0;

i = closeListLength;

while pathPosition ~= 1

    for j = 1 : closeListLength

        if(closeList(i).fartherNodeRow == closeList(j).row && closeList(i).fartherNodeCol == closeList(j).col)

            pathListLength = pathListLength + 1;

            pathList(pathListLength) = closeList(j);

            pathPosition = j;

            i = j;

            break;

        end 

    end

end

pathListLength = pathListLength + 1;

for i = 1 : pathListLength - 1

    pathList(pathListLength - i + 1) =  pathList(pathListLength - i);

end

pathList(1) = closeList(closeListLength);

%地图着色

for i = 1 : mapRow

    for j = 1 : mapCol

        if map(i,j) == 1

            map(i,j) = 250;

        end

        if map(i,j) == 0

            map(i,j) = 0;

        end

    end

end

%关闭列表着色

for i = 2:closeListLength - 1

    map(closeList(i).row, closeList(i).col) = 80;

    imagesc(map);

    pause(0.5);

end

%最终路径着色

for i = 1 : pathListLength

    map(pathList(pathListLength - i + 1).row, pathList(pathListLength - i + 1).col) = 160;

    imagesc(map);

    pause(0.5);

end

仿真结果

如图1所示,绿色方格为起始节点,蓝色方格为目标节点,黄色方格为障碍物。

图1

如图2所示,淡蓝色方格为算法迭代过程中,所有被添加至closeList中的节点,绿色为算法最终生成的最优路径。

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

推荐阅读更多精彩内容