Tic tac toe linked list insert

前端 未结 0 361
遥遥无期
遥遥无期 2020-12-22 19:16

Any idea how can i make a tic tac toe using full linked list? My first idea was creating this

struct Node
{
 int data;
 Node*next,*prev,*up,*down;
}


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题