pradeep negi
Follow
Posted 4 year ago

Which algorithm is used in the Game tree to make decisions of Win/Lose?

  1. Heuristic Search Algorithm
  2. DFS/BFS algorithm
  3. Greedy Search Algorithm
  4. Min/Max algorithm
1 Answer(s)
Mitesh Sharma
Follow
Posted 4 year ago Mitesh Sharma

A game tree is a directed graph whose nodes represent the positions in Game and edges represent the moves. To make any decision, the game tree uses the Min/Max algorithm.