我试图编写终端二十一点游戏,我是C编程的新手
我试图做的是在一个功能中创建一个全局堆栈,我可以通过逐个推送所有我的洗牌(52张卡)。然后,每个玩家都可以弹出一张或两张卡片......卡片的数量会减少。
这是我的代码:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include "stack.h"
/* *********************************************************************** */
/* STACK DATASTRUCTURE */
/* *********************************************************************** */
int stack[52];
void push();
int pop();
void traverse();
int is_empty();
int top_element();
int top = 0;
void push(int value) {
stack[top] = value;
top++;
}
int pop() {
top--;
return stack[top];
}
void traverse() {
int d;
if (top == 0) {
printf("Stack is empty.\n\n");
return;
}
printf("There are %d elements in stack.\n", top);
for (d = top - 1; d >= 0; d--)
printf("%d\n", stack[d]);
printf("\n");
}
int is_empty() {
if (top == 0)
return 1;
else
return 0;
}
int top_element() {
return stack[top-1];
}
/* *********************************************************************** */
/* MY FUNCTIONS */
/* *********************************************************************** */
void FYshuffle (int *array, int len) {
int i, tmp, x;
for (i=len-1; i>1; i--) {
x = rand()%i;
if (x==i) continue;
/* now swap */
tmp = array[i];
array[i] = array[x];
array[x] = tmp;
}
}
int shuffleCards(void) {
int i;
int c = 0;
int cards[52] = {1, 2, 3, 4, 5, 6 ,7 ,8 ,9 ,10 ,11 ,12 ,13 ,14 ,15 ,16 ,17,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
48, 49, 50, 51, 52};
int deck[52];
srand(time(0));
FYshuffle(cards,52);
for (i=0; i<52;i++) {
push(cards[i]); <<<<<<<<<<<<< HERE'S THE PROBLEM, ITS JUST LOCAL STACK! I NEED IT TO BE GLOBAL
int element;
element = pop();
printf("Element removed from stack is %d.\n", element);
}
for (i=0;i<52;i++) {
deck[i] = cards[i];
printf("%d", deck[c]);
printf("%s", " ");
c++;
}
return 0;
/* return deck; */
}
/* recognize suits */
int recognizeSuit(int num) {
int suite;
suite = num / 13;
switch(suite) {
case 0 :
printf("Clubs ");
break;
case 1 :
printf("Diamonds ");
break;
case 2 :
printf("Hearts ");
break;
case 3 :
printf("Spades ");
break;
default :
printf("Error ");
}
}
/* recognize the number */
int recognizeNumber(int num) {
/* recognize the suit */
int number;
number = num % 13 + 1;
switch(number) {
case 1 :
printf("ACE ");
break;
case 11 :
printf("JACK ");
break;
case 12 :
printf("QUEEN ");
break;
case 13 :
printf("KING ");
break;
default :
printf("%d ", number);
}
}
int main(void) {
shuffleCards();
printf(" - ");
recognizeNumber(2);
recognizeSuit(2);
return 0;
}
我刚刚在代码中写了一个注释,告诉你们这个问题,我该如何解决呢?因为当我检查主要的堆栈时,它是空的..
非常感谢你的帮助!祝福有一天!
答案 0 :(得分:-1)
您在代码中实际提到的问题不正确。您声明的堆栈已经是全局定义的全局堆栈。
您可以直接测试。这是一个名为pushGlobalStack()
的函数,您可以在其中推送函数内的值。然后,为了检查堆栈是否为全局,请在main中弹出值而不是pushGlobalStack()
函数。您可以检查值是否完全相同。
void PushGlobalStack(){
int cards[52] = {11, 22, 51, 4, 5, 41 ,7 ,8 ,9 ,10 ,1 ,2 ,13 ,14 ,15 ,16 ,17,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
33, 34, 35, 36, 37, 38, 39, 40, 6, 42, 43, 44, 45, 46, 47,
48, 49, 50, 4, 3};
for(int i=0; i<52;i++) {
push(cards[i]);
}
}
int main(void) {
//shuffleCards();
// printf(" - ");
//recognizeNumber(2);
//recognizeSuit(2);
PushGlobalStack();
for(int i=0; i<52;i++) {
printf("%d \t", pop());
}
printf("\n\n\n");
return 0;
}