Skip to content

RuixiangZhao/tictactoe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tictactoe

Single player version of tictactoe

A simple c++ implementation of Tic Tac Toe with the minimax algorithm.

Modified from https://github.com/Chaoskira/tictactoe-minimax

compile:

g++ play.cpp game.cpp -o play

run:

./play

Two players version of tictactoe

Realization in myself!!

one player is client, another is server

Server

compile server:

g++ game_server.cpp -o server -lws2_32

run server:

./server

Client

compile client:

g++ game_client.cpp -o client -lws2_32

run client:

./client

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages