C语言使用队列和栈实现纸牌游戏–小猫钓鱼,供大家参考,具体内容如下
C语言:
//纸牌游戏--小猫钓鱼--队列 栈--(所谓的拉火车)
#include <stdio>
struct queue //队列
{
int data[1000];
int head;
int tail;
};
struct stack //栈
{
int data[10];
int top;
};
int main(void)
{
struct queue q1, q2; //小哼 q1 和小哈 q2 的队列
struct stack s; //栈
int book[10]; //
- 1
- 2
前往页