Greedy Best First Search Algorithm | Informed Search Algorithm | Artificial Intelligence

Поделиться
HTML-код
  • Опубликовано: 23 окт 2024

Комментарии • 2

  • @ahsan-h3b
    @ahsan-h3b 11 дней назад

    Suppose we have 2 paths, 1st path that has the lower hurestic value but it does not contain the goal, will the greedy best first search will go to that path that has the lower hurestic values or it will go to other path which contains the goal ? please explain

    • @beingpassionatelearner7344
      @beingpassionatelearner7344  11 дней назад +1

      It selects a node with the lowest heuristic value using a priority queue, regardless of whether the node is on the path to the goal.