Robot exploration algorithm

后端 未结 8 1888
情书的邮戳
情书的邮戳 2021-02-01 05:48

I\'m trying to devise an algorithm for a robot trying to find the flag(positioned at unknown location), which is located in a world containing obstacles. Robot\'s mission is to

8条回答
  •  误落风尘
    2021-02-01 06:19

    I think the approach would be to construct the graph as the robot travels. There will be a function that will return to the robot the particular state of a grid. This is needed since the robot will not know in advance the state of the grid.

    You can apply heuristics in the search so the probability of reaching the flag is increased.

提交回复
热议问题