C0d3Crush / go

1 stars 0 forks source link

Data-structure change: Moves List -> Moves Tree-structure #5

Open C0d3Crush opened 1 month ago

C0d3Crush commented 1 month ago

Summary

Update the moves list in Board.h to a tree structure to store different game paths.

Details

Currently, the moves list in Board.h is implemented as a simple list. This structure only allows for a single sequence of moves. To support multiple game paths and variations, we need to change this list to a tree structure.