• 大小: 0.02M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签:

资源简介

c语言24点游戏源码.zip

资源截图

代码片段和文件信息

#include 
#include 
#include  
#include  
#include 
/*字符操作函数*/
#include  

#define BUFFSIZE 32
#define COL 128
#define ROW 64

/* 【自学去】网站收集 http://www.zixue7.com */
/*定义栈1*/
typedef struct node
{
    int data;
    struct node  *next;
}STACK1; 
/*定义栈2*/
typedef struct node2
{
    char data;
    struct node2 *next;
}STACK2;
/*下面定义两个栈基本操作*/
/*入栈函数*/
STACK1 *PushStack(STACK1 *topint x)
{
    STACK1 *p;  
    p=(STACK1 *)malloc(sizeof(STACK1));
    if(p==NULL)  
    {
        printf(“ERROR\n!“);
        exit(0);  
    }
    p->data=x;  
    p->next=top;    
    top=p;      
    return top;     
}
/*出栈函数*/
STACK1 *PopStack(STACK1 *top) 
{
    STACK1 *q; 
    q=top;  
    top=top->next; 
   

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-05-17 06:59  c语言24点游戏源码\
     文件        8213  2015-05-17 06:55  c语言24点游戏源码\95.c
     文件        3351  2015-03-31 17:51  c语言24点游戏源码\95.dsp
     文件         512  2015-03-31 17:51  c语言24点游戏源码\95.dsw
     文件       16064  2015-03-31 17:51  c语言24点游戏源码\95.EXE
     文件       33792  2015-03-31 17:51  c语言24点游戏源码\95.ncb
     文件        2997  2015-03-31 17:51  c语言24点游戏源码\95.OBJ
     文件       48640  2015-03-31 17:51  c语言24点游戏源码\95.opt
     文件        1177  2015-03-31 17:51  c语言24点游戏源码\95.plg
     文件           1  2015-03-31 17:51  c语言24点游戏源码\e
     文件         121  2015-05-17 06:52  c语言24点游戏源码\自学去论坛.url

评论

共有 条评论