摘要: C语言使用队列和栈实现纸牌游戏–小猫钓鱼 C语言: //纸牌游戏--小猫钓鱼--队列 栈--(所谓的拉火车) #include <stdio.h> struct queue //队列 { int data[1000]; int head; int tail; }; struct stack //栈 阅读全文
posted @ 2020-10-09 21:23 狡猾的狐狸科 阅读(281) 评论(0) 推荐(0) 编辑