没有合适的资源?快使用搜索试试~ 我知道了~
停车场管理问题数据结构实习报告
5星 · 超过95%的资源 需积分: 13 19 下载量 118 浏览量
2017-11-05
20:38:26
上传
评论 3
收藏 4KB TXT 举报
温馨提示
本文档为数据结构停车场管理问题源代码,亲测可以运行,C语言编写
资源推荐
资源详情
资源评论
#include <stdio.h>
#include <process.h>
#include <malloc.h>
#include <string.h>
//------------------------函数结果状态代码
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define TNFEASIBLE -1
#define OVERFLOW -2
//Status 是函数的类型,其值是函数结果状态代码
typedef int Status;
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
#define MONEY 5
typedef struct ElemType {
char a[3];
int num;
int time;
}ElemType;
typedef struct SqStack {
ElemType *base;//在栈构造之前和销毁之后, base的值为NULL
ElemType *top;//栈顶指针
int stacksize;//当前已经分配的存储空间,以元素为单位
}SqStack;//栈的表示
#include <process.h>
#include <malloc.h>
#include <string.h>
//------------------------函数结果状态代码
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define TNFEASIBLE -1
#define OVERFLOW -2
//Status 是函数的类型,其值是函数结果状态代码
typedef int Status;
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
#define MONEY 5
typedef struct ElemType {
char a[3];
int num;
int time;
}ElemType;
typedef struct SqStack {
ElemType *base;//在栈构造之前和销毁之后, base的值为NULL
ElemType *top;//栈顶指针
int stacksize;//当前已经分配的存储空间,以元素为单位
}SqStack;//栈的表示
typedef struct QNode {
ElemType data;
struct QNode *next;
}QNode, *QueuePtr;//队列的表示
typedef struct LinkQueue {
QueuePtr front;//队头指针
QueuePtr rear;//队尾指针
}LinkQueue;
//-----------------基本操作的实现
//-----------------栈
void InitStack(SqStack *S) {//构造一个空栈
S->base = (ElemType *)malloc(STACK_INIT_SIZE * sizeof(ElemType));
if (!S->base) exit(OVERFLOW);
S->top = S->base;
S->stacksize = STACK_INIT_SIZE;
//return OK;
}//InitStack
Status Push(SqStack *S, ElemType e) {//插入元素e为新的栈顶元素
if (S->top - S->base >= S->stacksize) {//栈满,追加存储空间
S->base = (ElemType *)realloc(S->base, (S->stacksize + STACKINCREMENT) * sizeof(ElemType));
if (!S->base) exit(OVERFLOW);//存储分配失败
S->top = S->base + S->stacksize;
S->stacksize += STACK_INIT_SIZE;
}
*S->top++ = e;
return OK;
剩余5页未读,继续阅读
资源评论
- 阿鹏冲冲冲2017-12-04挺好的,感觉还行
mang_kunlun
- 粉丝: 0
- 资源: 4
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功