中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C語言中怎么實現一個簡單停車場管理系統

發布時間:2021-07-02 16:50:15 來源:億速云 閱讀:158 作者:Leah 欄目:編程語言

C語言中怎么實現一個簡單停車場管理系統,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

具體內容如下

#include<stdio.h>#include<stdlib.h>#include<time.h> #define D (24*60*60) #define H (60*60) #define M (60)#define OK 1#define ERROR 0#define MAX_STACK_SIZE 10 /* 棧向量大小 */typedef int StackData;typedef int QueueData;typedef int ElemType;typedef struct Node{ int No;  /* 車號 */ int Timeinit; /* 進入停車場的時間*/}Node;typedef struct QueueNode /* 隊列結點*/{ struct Node data;  struct QueueNode* next; } QueueNode;typedef struct LinkQueue /* 鏈式隊列結構體 */{ struct QueueNode *rear, *front;} LinkQueue;  typedef struct SqStackNode /* 鏈式棧結構體 */{  int top; int bottom; struct Node stack_array[MAX_STACK_SIZE+1] ;}SqStackNode ; //***************************************************************SqStackNode* InitStack()    /* 初始化棧*/{  SqStackNode *S=(SqStackNode *)malloc(sizeof(SqStackNode)); S->bottom=S->top=0;  return (S);}int FullStack(SqStackNode *S)   /* 滿棧 */{ return S->top==MAX_STACK_SIZE;}int pushStack(SqStackNode *S,Node data) /* 入棧 */{  if(FullStack(S)) { return ERROR;  /* 棧滿,返回錯誤標志 */ } S->top++ ;    (S->stack_array[S->top]).No=data.No ;  (S->stack_array[S->top]).Timeinit=data.Timeinit;  return OK;   /* 壓棧成功 */}int popStack(SqStackNode *S,Node *data)  /*彈出棧頂元素*/{  if(S->top==0) { return ERROR;  /* 棧空,返回錯誤標志 */ } (*data).No=(S->stack_array[S->top]).No;  (*data).Timeinit=(S->stack_array[S->top]).Timeinit;  S->top--;  return OK; }int FinfStack(SqStackNode *S,Node data) /* 搜索棧內元素data*/{ int i; if(S->top==0) { return ERROR;  /* 棧空,返回錯誤標志 */ }  for(i=1;i<=S->top;i++) { if(S->stack_array[i].No == data.No) {  return OK; } } return ERROR; }   //**************************************************** LinkQueue* InitQueue (void)  /* 初始化隊列 */{ LinkQueue *Q=( LinkQueue * ) malloc( sizeof ( LinkQueue ) ); Q->rear=Q->front=NULL; return Q;} int QueueEmpty ( LinkQueue *Q ) /* 空隊列*/ { return Q->front == NULL;} int GetFrontQueue ( LinkQueue *Q, Node *data ) /* 取隊首 */{ if ( QueueEmpty (Q) ) return 0;  (*data).No = (Q->front->data).Timeinit; return 1; }int EnQueue ( LinkQueue **Q, Node data) /* 入隊*/{ QueueNode *p = ( QueueNode * ) malloc( sizeof ( QueueNode ) ); (p->data).No = data.No;  (p->data).Timeinit = data.Timeinit;  p->next = NULL; if ( (*Q)->front == NULL )  { (*Q)->front = (*Q)->rear = p; } else {  (*Q)->rear = (*Q)->rear->next = p; } return 1;}int DeQueue ( LinkQueue **Q, Node *data) /* 出對*/{ if ( QueueEmpty (*Q) )  { return 0;  } QueueNode *p = (*Q)->front;  (*data).No = p->data.No;    (*data).Timeinit = p->data.Timeinit;  (*Q)->front = (*Q)->front->next;  if ((*Q)->front == NULL) (*Q)->rear = NULL; free (p); return 1; }/*********************************************************/int now_time(void) /* 獲取當日時間,單位秒*/{  time_t t1;  time(&t1);  int time=t1%D;  return time; }  Parking(LinkQueue **Q,SqStackNode *S) /* 停車*/{ int i,time_now; Node data; printf("Input the Car No:\n"); scanf(" %d",&data.No);  for(i=1;i<=S->top;i++) {  if(S->stack_array[i].No == data.No)/* 車號已存在*/ { printf("The Car is existed\n"); return ; } }  EnQueue(Q,data);/* 進去等待隊列*/ while(!QueueEmpty(*Q)) { if(FullStack(S)) /* 停放棧滿*/ { printf("Please Wait...\n");  break; } else /* 停放棧未滿 */ { DeQueue(Q,&data);/* 等待隊列車出對 */ data.Timeinit=now_time();/* 記錄當前時間*/ pushStack(S,data);/* 進入停放棧*/ printf("Park Success\n"); } } return ;}leaving(SqStackNode *S,SqStackNode *B,LinkQueue **Q)/* 離開*/{ if(S->bottom == S->top)/* 停放棧空*/ { printf("Parking is Empty:\n"); } else { Node data; int i,h,m,s; float charge;  int time_now,parking_time; printf("Leaving No:\n"); scanf(" %d",&i); data.No=i; if(!FinfStack(S,data))/* 停放棧內無此車*/ { printf("Do not find the car\n"); return ; } else/* 停放棧內有此車*/ { while(S->stack_array[S->top].No != i)/* 此車后的車依次出棧入讓路棧*/ { popStack(S,&data); pushStack(B,data); } popStack(S,&data);/* 此車出停放棧*/ time_now=now_time(); parking_time=time_now-data.Timeinit;/* 計算停車時間*/  h = parking_time/H; parking_time = parking_time%H; m = parking_time/M; s = parking_time%M; charge = 6*h+0.1*(m+1);/* 計算停車收費*/ printf("The leaving car:%d Parking time:%d:%d:%d Charge($6/h):$%g\n",data.No,h,m,s,charge);  while(B->bottom != B->top)/* 讓路棧內的車依次出棧入停放棧*/ { popStack(B,&data); pushStack(S,data); } while(!FullStack(S)&&(!QueueEmpty(*Q)))/* 停放棧未滿且等待隊列未空*/ { DeQueue(Q,&data); /* 等待隊列車出隊*/ data.Timeinit=now_time(); pushStack(S,data);/* 出隊的車入停放棧*/ }  }  }}situation(SqStackNode *S,LinkQueue **Q)/* 查看停車場當前情況*/{ Node data; int i; int time_now,parking_time; int h,m,s; struct QueueNode *p; int wait_count=0; p=(*Q)->front; if(p == NULL)/* 等待隊列空*/ { printf("Waiting car :0\n"); } else/* 等待隊列未空*/ { do {  wait_count++; p=p->next; }while(p!=NULL);/* 計算等待隊列內車數*/ printf("Waiting car :%d\n",wait_count); }  printf("Car No: "); for(i=1;i<=S->top;i++) { printf("%-10d",S->stack_array[i].No);  if(S->stack_array[i].No == data.No) {  return OK; } } printf("\nPark time:"); for(i=1;i<=S->top;i++) { time_now = now_time(); parking_time = time_now - S->stack_array[i].Timeinit;/* 計算截止當前停車時間*/ h = parking_time/H; parking_time = parking_time%H; m = parking_time/M; s = parking_time%M; printf("%02d:%02d:%02d ",h,m,s); } printf("\n"); } int main(){ int i; Node data; SqStackNode *park;/* 停放棧*/ SqStackNode *back;/* 讓路棧*/ LinkQueue *wait; /* 等待隊列*/ park=InitStack(); back=InitStack(); wait=InitQueue(); while(1) { system("clear\n"); printf("----------Welcome to our Car Parking----------\n"); printf("  1.Parking \n"); printf("  2.leaving \n"); printf("  3.situation \n"); printf("  4.exit \n"); scanf(" %d",&i); switch(i) { case 1:/* 停車*/ { system("clear\n"); Parking(&wait,park); setbuf(stdin,NULL); getchar(); break; } case 2:/* 離開 */ { leaving(park,back,&wait); setbuf(stdin,NULL); getchar(); break; } case 3:/* 查看停車情況*/ {  system("clear\n"); situation(park,&wait); setbuf(stdin,NULL); getchar(); break; } case 4:/* 退出*/ { return 0; } default: { break; } } } return 0; }

關于C語言中怎么實現一個簡單停車場管理系統問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

高邑县| 商河县| 广德县| 育儿| 肃宁县| 常德市| 泊头市| 莫力| 遂川县| 府谷县| 肃宁县| 临猗县| 邯郸县| 华阴市| 桑日县| 灌云县| 德化县| 泗洪县| 兴化市| 固原市| 比如县| 平顶山市| 武义县| 达孜县| 安龙县| 旅游| 临湘市| 堆龙德庆县| 公主岭市| 乡宁县| 敦煌市| 汶川县| 姜堰市| 乐亭县| 青阳县| 育儿| 额尔古纳市| 汽车| 沧源| 西盟| 广东省|