Question

In: Computer Science

explain a pseudocode for tic tac toe in c++ between a computer and a player in...

explain a pseudocode for tic tac toe in c++ between a computer and a player in words

Solutions

Expert Solution

Tic-tac-toe is a game where two players X and O fill the hash (#) shaped box (consist of two vertical lines crossing two horizontal lines) with their alternate turns. The player who first fills the box with 3Xs or 3Os in a horizontal, vertical, or diagonal manner will win the game.

In some cases, when none of the players succeeds in filling the boxes horizontally, vertically, or diagonally with 3Xs or 3Os, then the game will be considered a draw.

Implementation of Tic-Tac-Toe game

Rules of the Game

  • The game is to be played between two people (in this program between HUMAN and COMPUTER).
  • One of the player chooses ‘O’ and the other ‘X’ to mark their respective cells.
  • The game starts with one of the players and the game ends when one of the players has one whole row/ column/ diagonal filled with his/her respective character (‘O’ or ‘X’).
  • If no one wins, then the game is said to be draw.

    Implementation
    In our program the moves taken by the computer and the human are chosen randomly. We use rand() function for this.

    What more can be done in the program?
    The program is in not played optimally by both sides because the moves are chosen randomly. The program can be easily modified so that both players play optimally (which will fall under the category of Artificial Intelligence). Also the program can be modified such that the user himself gives the input (using scanf() or cin).

    Winning Strategy – An Interesting Fact
    If both the players play optimally then it is destined that you will never lose (“although the match can still be drawn”). It doesn’t matter whether you play first or second.In another ways – “ Two expert players will always draw ”.

Describing a Perfect Game of Tic Tac Toe

To begin, let's start by defining what it means to play a perfect game of tic tac toe:

If I play perfectly, every time I play I will either win the game, or I will draw the game. Furthermore if I play against another perfect player, I will always draw the game.

How might we describe these situations quantitatively? Let's assign a score to the "end game conditions:"

  • I win, hurray! I get 10 points!
  • I lose, shit. I lose 10 points (because the other player gets 10 points)
  • I draw, whatever. I get zero points, nobody gets any points.

So now we have a situation where we can determine a possible score for any game end state.

Looking at a Brief Example

To apply this, let's take an example from near the end of a game, where it is my turn. I am X. My goal here, obviously, is to maximize my end game score.

If the top of this image represents the state of the game I see when it is my turn, then I have some choices to make, there are three places I can play, one of which clearly results in me wining and earning the 10 points. If I don't make that move, O could very easily win. And I don't want O to win, so my goal here, as the first player, should be to pick the maximum scoring move.

But What About O?

What do we know about O? Well we should assume that O is also playing to win this game, but relative to us, the first player, O wants obviously wants to chose the move that results in the worst score for us, it wants to pick a move that would minimize our ultimate score. Let's look at things from O's perspective, starting with the two other game states from above in which we don't immediately win:

The choice is clear, O would pick any of the moves that result in a score of -10.

// A C++ Program to play tic-tac-toe

#include<bits/stdc++.h>
using namespace std;

#define COMPUTER 1
#define HUMAN 2

#define SIDE 3 // Length of the board

// Computer will move with 'O'
// and human with 'X'
#define COMPUTERMOVE 'O'
#define HUMANMOVE 'X'

// A function to show the current board status
void showBoard(char board[][SIDE])
{
   printf("\n\n");
  
   printf("\t\t\t %c | %c | %c \n", board[0][0],
                           board[0][1], board[0][2]);
   printf("\t\t\t--------------\n");
   printf("\t\t\t %c | %c | %c \n", board[1][0],
                           board[1][1], board[1][2]);
   printf("\t\t\t--------------\n");
   printf("\t\t\t %c | %c | %c \n\n", board[2][0],
                           board[2][1], board[2][2]);

   return;
}

// A function to show the instructions
void showInstructions()
{
   printf("\t\t\t Tic-Tac-Toe\n\n");
   printf("Choose a cell numbered from 1 to 9 as below"
           " and play\n\n");
  
   printf("\t\t\t 1 | 2 | 3 \n");
   printf("\t\t\t--------------\n");
   printf("\t\t\t 4 | 5 | 6 \n");
   printf("\t\t\t--------------\n");
   printf("\t\t\t 7 | 8 | 9 \n\n");
  
   printf("-\t-\t-\t-\t-\t-\t-\t-\t-\t-\n\n");

   return;
}


// A function to initialise the game
void initialise(char board[][SIDE], int moves[])
{
   // Initiate the random number generator so that
   // the same configuration doesn't arises
   srand(time(NULL));
  
   // Initially the board is empty
   for (int i=0; i<SIDE; i++)
   {
       for (int j=0; j<SIDE; j++)
           board[i][j] = ' ';
   }
  
   // Fill the moves with numbers
   for (int i=0; i<SIDE*SIDE; i++)
       moves[i] = i;

   // randomise the moves
   random_shuffle(moves, moves + SIDE*SIDE);
  
   return;
}

// A function to declare the winner of the game
void declareWinner(int whoseTurn)
{
   if (whoseTurn == COMPUTER)
       printf("COMPUTER has won\n");
   else
       printf("HUMAN has won\n");
   return;
}

// A function that returns true if any of the row
// is crossed with the same player's move
bool rowCrossed(char board[][SIDE])
{
   for (int i=0; i<SIDE; i++)
   {
       if (board[i][0] == board[i][1] &&
           board[i][1] == board[i][2] &&
           board[i][0] != ' ')
           return (true);
   }
   return(false);
}

// A function that returns true if any of the column
// is crossed with the same player's move
bool columnCrossed(char board[][SIDE])
{
   for (int i=0; i<SIDE; i++)
   {
       if (board[0][i] == board[1][i] &&
           board[1][i] == board[2][i] &&
           board[0][i] != ' ')
           return (true);
   }
   return(false);
}

// A function that returns true if any of the diagonal
// is crossed with the same player's move
bool diagonalCrossed(char board[][SIDE])
{
   if (board[0][0] == board[1][1] &&
       board[1][1] == board[2][2] &&
       board[0][0] != ' ')
       return(true);
      
   if (board[0][2] == board[1][1] &&
       board[1][1] == board[2][0] &&
       board[0][2] != ' ')
       return(true);

   return(false);
}

// A function that returns true if the game is over
// else it returns a false
bool gameOver(char board[][SIDE])
{
   return(rowCrossed(board) || columnCrossed(board)
           || diagonalCrossed(board) );
}

// A function to play Tic-Tac-Toe
void playTicTacToe(int whoseTurn)
{
   // A 3*3 Tic-Tac-Toe board for playing
   char board[SIDE][SIDE];
  
   int moves[SIDE*SIDE];
  
   // Initialise the game
   initialise(board, moves);
  
   // Show the instructions before playing
   showInstructions();
  
   int moveIndex = 0, x, y;
  
   // Keep playing till the game is over or it is a draw
   while (gameOver(board) == false &&
           moveIndex != SIDE*SIDE)
   {
       if (whoseTurn == COMPUTER)
       {
           x = moves[moveIndex] / SIDE;
           y = moves[moveIndex] % SIDE;
           board[x][y] = COMPUTERMOVE;
           printf("COMPUTER has put a %c in cell %d\n",
                   COMPUTERMOVE, moves[moveIndex]+1);
           showBoard(board);
           moveIndex ++;
           whoseTurn = HUMAN;
       }
      
       else if (whoseTurn == HUMAN)
       {
           x = moves[moveIndex] / SIDE;
           y = moves[moveIndex] % SIDE;
           board[x][y] = HUMANMOVE;
           printf ("HUMAN has put a %c in cell %d\n",
                   HUMANMOVE, moves[moveIndex]+1);
           showBoard(board);
           moveIndex ++;
           whoseTurn = COMPUTER;
       }
   }

   // If the game has drawn
   if (gameOver(board) == false &&
           moveIndex == SIDE * SIDE)
       printf("It's a draw\n");
   else
   {
       // Toggling the user to declare the actual
       // winner
       if (whoseTurn == COMPUTER)
           whoseTurn = HUMAN;
       else if (whoseTurn == HUMAN)
           whoseTurn = COMPUTER;
      
       // Declare the winner
       declareWinner(whoseTurn);
   }
   return;
}

// Driver program
int main()
{
   // Let us play the game with COMPUTER starting first
   playTicTacToe(COMPUTER);
  
   return (0);
}


Related Solutions

Assume that the human player makes the first move against the computer in a game of Tic-Tac-Toe,
Assume that the human player makes the first move against the computer in a game of Tic-Tac-Toe, which has a 3 x 3 grid. Write a MATLAB function that lets the computer respond to that move. The function’s input argument should be the cell location of the human player’s move. The function’s output should be the cell location of the computer’s rst move. Label the cells as 1, 2, 3 across the top row; 4, 5, 6 across the middle...
Python Code Needed Two-Player, Two-Dimensional Tic-Tac-Toe Write a script to play two-dimensional Tic-Tac-Toe between two human...
Python Code Needed Two-Player, Two-Dimensional Tic-Tac-Toe Write a script to play two-dimensional Tic-Tac-Toe between two human players who alternate entering their moves on the same computer. Create a 3-by-3 two-dimensional array. Each player indicates their moves by entering a pair of numbers representing the row and column indices of the square in which they want to place their mark, either an 'X' or an 'O'. When the first player moves, place an 'X' in the specified square. When the second...
Write a program that plays tic-tac-toe. The tic-tac-toe game is played on a 3 × 3...
Write a program that plays tic-tac-toe. The tic-tac-toe game is played on a 3 × 3 grid as shown below: The game is played by two players, who take turns. The first player marks moves with a circle, the second with a cross. The player who has formed a horizontal, vertical, or diagonal sequence of three marks wins. Your program should draw the game board, ask the user for the coordinates of the next mark (their move), change the players...
Tony Gaddis C++ Tic-Tac-Toe Write a program that allows two players (player X and player O)...
Tony Gaddis C++ Tic-Tac-Toe Write a program that allows two players (player X and player O) to play a game of tic-tac-toe. Use a two- dimensional char array with three rows and three columns as the game board. Each element of the array should be initialized with an asterisk (*). The players take turns making moves and the program keeps track of whose turn it is. Player X moves first. The program should run a loop that: Displays the contents...
In C# A Tic Tac Toe program that uses functions and arrays. The program should start...
In C# A Tic Tac Toe program that uses functions and arrays. The program should start by asking the player one for their name and then player two for their name. Then should print the board and ask the user what column and then what row they would like to put their x (or o, depending on the player) . Use the clear function to make it look as though the board is never repeating.. Thanks!
Perk Company produces three products: Tic, Tac, and Toe. Tic requires 90 machine setups, Tac requires...
Perk Company produces three products: Tic, Tac, and Toe. Tic requires 90 machine setups, Tac requires 80 setups, and Toe requires 330 setups. Berk has identified an activity cost pool with allocated overhead of $18,000 for which the cost driver is machine setups. How much overhead is assigned to the Tic product?
How to make tic tac toe game in javascript with vue.js
How to make tic tac toe game in javascript with vue.js
C++ Make a Tic Tac Toe game for 2 players to play using 2D arrays and...
C++ Make a Tic Tac Toe game for 2 players to play using 2D arrays and classes. Do not add more #include functions other than the ones listed. I never said what type of code I needed in a previous question. I apologize and I can't go back and change it so here is the same question with more information Using the tictactoeGame class, write a main program that uses a tictactoeGame to implement a game in which two players...
C# (Tic-Tac-Toe) Create class TicTacToe that will enable you to write a complete app to play...
C# (Tic-Tac-Toe) Create class TicTacToe that will enable you to write a complete app to play the game of Tic-Tac-Toe. The class contains a private 3-by-3 rectangular array of integers. The constructor should initialize the empty board to all 0s. Allow two human players. Wherever the first player moves, place a 1 in the specified square, and place a 2 wherever the second player moves. Each move must be to an empty square. After each move, determine whether the game...
Write a class (and a client class to test it) that encapsulates a tic-tac-toe board. A...
Write a class (and a client class to test it) that encapsulates a tic-tac-toe board. A tic-tac-toe board looks like a table of three rows and three columns partially or completely filled with the characters X and O. At any point, a cell of that table could be empty or could contain an X or an O. You should have one instance variable, a two-dimensional array of values representing the tic-tac-toe board. This game should involve one human player vs....
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT