how to realize a* or best first search in 2d matrix?

조회 수: 3 (최근 30일)
Vlad bibikov
Vlad bibikov 2021년 1월 25일
답변: Shubham Rawat 2021년 1월 28일
Hello, i have a random n*n matrix and i need to find path from one point to another using a* or BFS. You can move only up/down and left/right
For example [ 6 9 6 8;
8 6 3 9;
9 2 6 1 ]
We start from (1;1) to (3;4) and the way is gonna be like 6 - 8 - 6 - 2 - 6 - 1 and the distance will be 6+8+6+2+6+1=29

채택된 답변

Shubham Rawat
Shubham Rawat 2021년 1월 28일
Hi Vlad,
You may use this link for the BFS using Adjacency matrix:
Hope this Helps!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Construction에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by