Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 864 Bytes

README.md

File metadata and controls

27 lines (23 loc) · 864 Bytes

C++ Chain Reaction Game

Contributors

Chain Reaction multipayer game to demostrate the usage and applications of Data Structures using C++.

The game uses the some of the concepts of the basic data structures such as:

  • Linked List
  • Graphs

Some of the libraries we used besides the common iostream and conio libraries:

  1. map
    • To map the game nodes to integers for direct access instead of using search function.
  2. stdlib
    • Most importantly to generate random integers to mark the moves of the self playing bot.
    • Make use of the system function to associate players with a color.