About 241,000 results
Open links in new tab
  1. MiniMax Algorithm: How Machine thinks? - OpenGenus IQ

    Minimax algorithm is a recursive algorithm used to choose an optimal move for a player, assuming that the opponent is also playing optimally. As its name suggests, its goal is to minimize the maximum …

  2. Recursion & the Minimax Algorithm Key to Acing Computer Science If you understand everyting, ace your computer science course. Otherwise, study & program something you don't understand, then …

  3. minimax Algorithm

    The minimax algorithm is a decision-making strategy used in various applications, particularly in two-player, zero-sum games such as chess, tic-tac-toe, and connect four.

  4. Solving Complex Problems with Python and the Minimax Algorithm

    Solving Complex Problems with Python and the Minimax Algorithm Introduction Solving complex problems with Python and the minimax algorithm is an essential skill for any developer, particularly in …

  5. Minimax Algorithm Deep Dive - numberanalytics.com

    Jun 13, 2025 · The Minimax algorithm is a recursive algorithm used for decision making in games like Chess, Tic-Tac-Toe, etc. In this section, we will explore some advanced techniques that can be used …

  6. 6.1 AI Applications - Minimax Algorithm — Parallel Computing for ...

    At the heart of these AI milestones is a simple algorithm called Minimax that dates back to John von Neumann (1928), although Claude Shannon (1950) is often given credit for recognizing its …

  7. Minimax Algorithm | Artificial Intelligence | Books | Skedbooks

    The minimax algorithm: The minimax algorithm (Figure 5.3) computes the minimax decision from the current state. It uses a simple recursive computation of the minimax values of each successor state, …

  8. Adversarial Search Algorithms in Artificial Intelligence (AI)

    Jul 23, 2025 · Adversarial search algorithms are the backbone of strategic decision-making in artificial intelligence, it enables the agents to navigate competitive scenarios effectively. This article offers …

  9. Minimax search - Algorithm Wiki

    Minimax is a recursive algorithm for choosing the next move in a two-player game. The tree represents the possible moves in a game, each node with multiple children represents a choice. Minimax …

  10. Finding optimal move in Tic-Tac-Toe using Minimax Algorithm in …

    Jul 23, 2025 · Prerequisites: Minimax Algorithm in Game Theory, Evaluation Function in Game Theory Let us combine what we have learnt so far about minimax and evaluation function to write a proper …