停车场管理系统 课程设计 C语言

停车场管理系统课程设计 数据结构 C语言

设计内容:

设有一个可以停放n(n>=5)汽车的狭长停车场,它只有一个大门可以供车辆进出。车辆按到达停车场时间的早晚依次从停车场最里面向大门口处停放(最先到达的第一辆车放在停车场的最里面)。如果停车场已放满n辆车,则后来的车辆只能在停车场大门外的便道上等待,一旦停车场内有车开走,则排在便道上的第一辆车就进入停车场。停车场内如有某辆车要开走,在他之后进入停车场的车都必须先退出停车场为它让路,待其开出停车场后,这些车辆在依原来的次序进场。每辆车在离开停车场时,都应依据它在停车场内停留的时间长短交费。如果停留在便道上的车 未进停车场就要离去,允许其离去,不收停车费,并且仍然保持在便道上等待的车辆的次序。编制模拟该停车场的管理的程序。

设计思路:

我采用数组来模拟栈和队列。分析设计内容可知:本设计需要两个栈、分别是停车栈和缓冲栈、两个队列分别是停车队列和临时队列。
任务要求细节分析如下:
(1)狭长停车场的容量n是可变的,所以此处要宏定义一个MAX_STOP,方便在头部修改n的值。
(2)只有一个大门可出入,根据实际情况分析满足FILO的特性,那么需要用到栈的数据结构。
(3)当停车场内车辆已满时需要后来车辆停在便道上,分析满足FIFO的特性,那么在此需要用到循环队列的数据结构。
(4)停车场内的车辆离开停车场时需要根据停放时间进行计费,则需要调用<time.h>库的函数,保存车辆的进出时间,并且设立一个容易更改的停车单价,用宏定义Price,方便在头部修改。
(5)如果停放在便道上的车辆为进入停车场就要收费,则需要追加一个队列来模拟车辆进入临时队列,为该车辆让路。
(6)书写一个美观大方的菜单界面,可以展示操作详情。

废话不多说了,求大佬轻喷,时间仓促难免有误,甩代码了:
注释删减版(可看文末):

//
// Create by Ep on 2019/6/28 
//
#include <stdio.h>
#include <stdlib.h> 
#include <windows.h>		
#include <string.h>			
#include <time.h>			

#define Price     0.1		 
#define MAX_STOP  5
#define MAX_PAVE  4   


typedef struct{
	int TimeIn;				
	int TimeOut;			
	char ct[50];
	char Lincense[10];		
}Car;

typedef struct{
	Car Stop[MAX_STOP];		
	int top;			
}Stopping;

typedef struct{
	Car Pave[MAX_PAVE];		
	int count;				
	int front, rear;		
}Pavement; 

typedef struct{
	Car Let[MAX_STOP];		
	int top;				 
}Buffer;						

typedef struct{					
	Car Wait[MAX_PAVE];		
	int count;				
	int front, rear;		
}Waiting; 

Stopping s;
Pavement p;
Buffer   b;
Car      c;
Waiting  w;
char     C[10];

void Car_Come();	
void Car_Leave();		
void Stop_To_Pave();	
void Stop_To_Buff();		
void Leave_Pavement();		
void DisPlay();			
void DisPlayPave();			
void Welcome();				
void SmallWelcome();
void Car_Leave_menu();
void Search();


void Car_Come(){						 
	printf("请输入即将停车的车牌号:");
	scanf("%s", &C);		
	int i = s.top;
	while(i != -1){
		if(0 == strcmp(s.Stop[i].Lincense, C)){
			printf("输入有误,此汽车已存在!\n");
			return;
		}
		i--;
	}
	int k = MAX_PAVE;
	while(k != 0){
		if(0 == strcmp(p.Pave[k].Lincense, C)){
			printf("输入有误,此汽车已存在!\n");
			return;
		}
		k--;
	}
	if (s.top >= MAX_STOP - 1){
		Stop_To_Pave();			
	}
	else{
		time_t t1;
		long int t = time(&t1);	
		char* t2;				
		t2 = ctime(&t1); 
		s.Stop[++s.top].TimeIn = t;
		strcpy(s.Stop[s.top].ct, t2);
		strcpy(s.Stop[s.top].Lincense, C);
		printf("牌照为%s的汽车停入停车位的%d车位,当前时间:%s\n", C, s.top+1, t2);
	}
}


void Search(){
	printf("请输入要搜索的车牌号:\n");
	scanf("%s", &C);
	int i, j, k, flag = 0;        
	time_t t1;
	long int t = time(&t1);
	if(s.top >= 0){
		for(i = s.top; i >= 0; i--){
			if(0 == strcmp(s.Stop[i].Lincense, C)){
			printf("此汽车在停车场内,信息如下:\n");
			printf("\t车牌号\t\t停车位序\t当前所需支付金额\t进入时间\t\n");
			printf("\t%s\t第%d个\t\t%0.f元\t\t\t%s", s.Stop[i].Lincense, i+1, Price * (t - s.Stop[i].TimeIn), s.Stop[i].ct);
			flag = 1;
			break;
			} 
		}
	}
	if(flag == 0 && p.count > 0){		 
		i = p.front, k = 1, j = p.rear;			
		while(i != j ){
			if(0 == strcmp(p.Pave[i].Lincense, C)){
				printf("此汽车在停便道上\n");
				printf("\t车牌号\t\t停车位序\n");
				printf("\t%s\t第%d个",p.Pave[i].Lincense, k);
				flag = 2;
				break;
			}
			i++;
			k++;
		}	
	}
	if(0 == flag)
		printf("停车场内外不存在该汽车信息!\n");
	
}


void Car_Leave(){						
	printf("请输入即将离开的车牌号:");
	scanf("%s", &C);
	int i, j, flag = 1, flag2 = 1;
	if(s.top >= 0){							
		for(i = s.top; i >=0; i-- ){		
			flag = flag * strcmp(s.Stop[i].Lincense, C);
			i--;
		}
	}

	if(0 == flag){							
		Stop_To_Buff();							
	}	

	if(flag !=0 /*&& flag2 != 0*/)				
	printf("停车场内没有该汽车的信息!\n"); 
}


void Leave_Pavement(){
	int i, j, flag = 0;
	printf("请输入即将离开的车牌号:");
	scanf("%s", &C);
	if(p.count  <= 0){
		printf("便道上不存在汽车!\n");
		return;
	}
	while(p.count > 0){					 
		i = p.front; 
		if(0 == strcmp(p.Pave[i].Lincense, C)){
			break;	
		}
		printf("牌照为%s的汽车暂时从便道进入临时便道\n", p.Pave[p.front].Lincense);
		strcpy(w.Wait[w.rear].Lincense, p.Pave[p.front].Lincense);
		p.front = (p.front + 1) % MAX_PAVE;	
		w.rear = (w.rear + 1) % MAX_PAVE;	
		w.count++;							
		p.count--;							
	}
	printf("\n牌照为%s的汽车从便道上开走,不收取任何费用!\n\n", p.Pave[i].Lincense); 
	p.front = (p.front + 1) % MAX_PAVE;
	p.count--;
	while(p.count > 0){		
		printf("牌照为%s的汽车暂时从便道进入临时便道\n", p.Pave[p.front].Lincense);
		strcpy(w.Wait[w.rear].Lincense, p.Pave[p.front].Lincense);
		p.front = (p.front + 1) % MAX_PAVE;
		w.rear = (w.rear + 1) % MAX_PAVE;
		w.count++;
		p.count--;
	}
	while(w.count > 0){		
		printf("\n牌照为%s的汽车返回便道\n",w.Wait[w.front].Lincense);
		strcpy(p.Pave[p.rear].Lincense, w.Wait[w.front].Lincense);
		w.front = (w.front + 1) % MAX_PAVE;	 
		p.rear = (p.rear + 1) % MAX_PAVE;
		w.count--;
		p.count++;
	}
}


void Stop_To_Buff(){
	while (s.top >= 0){	
		if(0 == strcmp(s.Stop[s.top].Lincense, C)){
			break;
		}
		strcpy(b.Let[b.top++].Lincense, s.Stop[s.top].Lincense);
		printf("牌照为%s的汽车暂时退出停车场\n", s.Stop[s.top--].Lincense);
	}
	printf("牌照为%s的汽车从停车场开走\n", s.Stop[s.top].Lincense);	 
	time_t t1;
	long int t = time(&t1);
	s.Stop[s.top].TimeOut = t;
	char* t2;
	t2 = ctime(&t1);
	printf("离开时间%s\n需付费%.0f元\n", t2, Price * (s.Stop[s.top].TimeOut - s.Stop[s.top].TimeIn));
	s.top--;
	while(b.top > 0){
		strcpy(s.Stop[++s.top].Lincense, b.Let[--b.top].Lincense);
		printf("牌照为%s的汽车停回停车位%d车位\n", b.Let[b.top].Lincense, s.top+1);
	}
	while(s.top < MAX_STOP-1){
		if(0 == p.count)
			break;
		else{
			strcpy(s.Stop[++s.top].Lincense, p.Pave[p.front].Lincense);
			printf("牌照为%s的汽车从便道中进入停车位的%d车位\n", p.Pave[p.front].Lincense, s.top+1);
			time_t t1;
			long int t = time(&t1);
			char* t2;
			s.Stop[s.top].TimeIn = t;
			p.front = (p.front + 1) % MAX_PAVE;
			p.count--;
		}
	}
}

void Stop_To_Pave(){
	if(p.count > 0 && (p.front == (p.rear + 1) % MAX_PAVE))
		printf("便道已满,请下次再来!\n");
	else{
		strcpy(p.Pave[p.rear].Lincense, C);
		p.rear = (p.rear + 1) % MAX_PAVE;
		p.count++;
		printf("牌照为%s的汽车停入便道上\n", C);
	}
}


void DisPlay(){
	int i = s.top;
	if(-1 == i)
		printf("停车场目前为空\n");
	time_t t1;
	long int t = time(&t1);
	printf("\t车牌号\t\t停放时间\t当前所需支付金额\t停放位序\n");
	while(i != -1){
		printf("\t%s\t%d分%d秒\t\t%.0f元\t\t\t第%d个\n", s.Stop[i].Lincense, 
		(t - s.Stop[i].TimeIn)/60,(t - s.Stop[i].TimeIn) % 60, Price * (t - s.Stop[i].TimeIn), i+1);
		i--;
	}
}


void DisPlayPave(){
	int i = p.front;
	int k = 1;			
	if(0 == p.count)  
	printf("便道目前为空\n");
	printf("\t车牌号\t\t停放位序\n");
	while(i != p.rear && k <= p.count){  
		printf("\t%s\t第%d个\n", p.Pave[i].Lincense, k++);
		i = (i + 1) % MAX_PAVE;
	}
}


void Car_Leave_menu(){
	while(1){
		system("cls");	
		SmallWelcome();	
		int i, cho;
		scanf("%d", &i);
		if(1 == i)  Car_Leave();
		if(2 == i)  Leave_Pavement();
		if(3 == i)  return;
		printf("\n返回请输入0\n");
		top:
			scanf("%d", &cho);
		if(0 == cho){
			continue;
		}
		else{
			printf("您的输入有误,请重新输入\n");
			goto top;
		}
	}	
} 

void SmallWelcome(){
	printf ("\t*******************目前停车场状况***********************\n");
    printf ("\t停车场共有%d个车位,当前停车场共有%d辆车,等候区共有%d/%d辆车\n",  
    MAX_STOP, s.top+1, (p.rear + MAX_PAVE - p.front) % MAX_PAVE, MAX_PAVE-1);
    printf ("\t********************************************************\n");
    printf ("\t---------Welcome to Ep's Car Parking next time----------\n");
    printf ("\t*                                                      *\n");
    printf ("\t*                   1.从停车场内驶出汽车               *\n");
    printf ("\t*                   2.从便道上驶出汽车                 *\n");
    printf ("\t*                   3.退出子管理系统                   *\n");
    printf ("\t*请注意:从停车场内驶离的汽车按照%.0f元/分钟计费          *\n",60*Price);
    printf ("\t*望周知:从便道上驶离的汽车不收取费用                  *\n");
    printf ("\t*                                                      *\n");
    printf ("\t*------------------------------------------------------*\n");
    printf ("\t--------Press key(1/2/3) to continue the program--------\n");
}
void HideCursor(){
 CONSOLE_CURSOR_INFO cursor_info = {1, 0};
 SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursor_info);
}

void Welcome(){
	time_t rawtime;
    struct tm * timeinfo;
    time ( &rawtime );
    timeinfo = localtime ( &rawtime );
    printf ("\t\t\t%s", asctime(timeinfo) );
    HideCursor();
	printf ("\t*******************目前停车场状况***********************\n");
    printf ("\t停车场共有%d个车位,当前停车场共有%d辆车,等候区共有%d/%d辆车\n",  
    MAX_STOP, s.top+1, (p.rear + MAX_PAVE - p.front) % MAX_PAVE, MAX_PAVE-1);
    printf ("\t********************************************************\n");
    printf ("\t--------------Welcome to Ep's Car Parking---------------\n");
    printf ("\t*                                                      *\n");
    printf ("\t*                   1.停车场停车信息显示               *\n");
    printf ("\t*                   2.便道上停车信息显示               *\n");
    printf ("\t*                   3.汽车到达停车场操作               *\n");
    printf ("\t*                   4.汽车离去停车场操作               *\n");
    printf ("\t*                   5.查找汽车功能                     *\n");
    printf ("\t*                   6.退出管理系统                     *\n");
    printf ("\t*收费标准:本停车场按照%.0f元/分钟计费,望周知            *\n",60*Price);
	printf ("\t*                                                      *\n");
    printf ("\t*------------------------------------------------------*\n");
    printf ("\t---------Press key(1/2/3/4/5/6) to run program----------\n");
    
}

int main(){
	s.top = -1;
	b.top = 0;
	p.rear = 0;
	p.count = 0;
	p.front = 0;
	w.count = 0;
	w.front = 0;
	w.rear = 0;
	while(1){
		system("color 0B");
		system("cls");	
		Welcome();	
		int i, cho;
		scanf("%d", &i);
		if(1 == i)  DisPlay();
		if(2 == i)  DisPlayPave();
		if(3 == i)  Car_Come();
		if(4 == i)  Car_Leave_menu();
		if(5 == i)  Search();
		if(6 == i)  {
						printf("\n欢迎您再次使用本系统呦 ε=ε=ε=(~ ̄▽ ̄)~\n\n");
						break;
					} 
		printf("\n返回请输入0\n");
		begin:	
			scanf("%d", &cho);
		if(0 == cho){
			continue;
		}
		else{
			printf("您的输入有误,请重新输入\n");
			goto begin;	
		}
	}
	return 0;
}


部分运行截图如下:
图1 简洁美观大方的菜单界面
在这里插入图片描述
图2 功能3运行截图(停车栈未满)
在这里插入图片描述
图3 功能3运行截图(停车栈已满)
在这里插入图片描述
图4 功能3的运行截图(可检测输入错误)
在这里插入图片描述
图5 功能1运行截图
在这里插入图片描述
图6 功能2运行截图
在这里插入图片描述
图7 功能4美观简洁的子菜单
在这里插入图片描述
图8:从停车场中驶离
在这里插入图片描述
图9:从便道上驶离
在这里插入图片描述

970+收藏足以说明本文质量,
如果不愿意自己研究代码实现细节,需要有注释版代码、流程图、1对1讲解请站内私信~ 君子爱财,取之有道。

说在最后的话:编写实属不易,若喜欢或者对你有帮助记得点赞+关注或者收藏哦~

停车场管理系统数据结构可以用C语言实现,以下是一个简单的示例: ```c #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_CARS 50 struct Car { char license_plate[10]; int entry_time; int exit_time; }; struct ParkingLot { struct Car cars[MAX_CARS]; int num_cars; }; void add_car(struct ParkingLot *parking_lot, char *license_plate, int entry_time) { if (parking_lot->num_cars >= MAX_CARS) { printf("Parking lot is full.\n"); return; } struct Car car; strcpy(car.license_plate, license_plate); car.entry_time = entry_time; car.exit_time = -1; parking_lot->cars[parking_lot->num_cars] = car; parking_lot->num_cars++; printf("Car with license plate %s added to the parking lot.\n", license_plate); } void remove_car(struct ParkingLot *parking_lot, char *license_plate, int exit_time) { int i; for (i = 0; i < parking_lot->num_cars; i++) { if (strcmp(parking_lot->cars[i].license_plate, license_plate) == 0) { if (parking_lot->cars[i].exit_time != -1) { printf("Car with license plate %s has already left the parking lot.\n", license_plate); } else { parking_lot->cars[i].exit_time = exit_time; printf("Car with license plate %s has left the parking lot.\n", license_plate); } return; } } printf("Car with license plate %s not found in the parking lot.\n", license_plate); } void print_parking_lot(struct ParkingLot *parking_lot) { int i; for (i = 0; i < parking_lot->num_cars; i++) { printf("Car with license plate %s entered at %d", parking_lot->cars[i].license_plate, parking_lot->cars[i].entry_time); if (parking_lot->cars[i].exit_time != -1) { printf(" and exited at %d", parking_lot->cars[i].exit_time); } printf("\n"); } } int main() { struct ParkingLot parking_lot; parking_lot.num_cars = 0; add_car(&parking_lot, "ABC123", 1000); add_car(&parking_lot, "DEF456", 1030); add_car(&parking_lot, "GHI789", 1100); remove_car(&parking_lot, "DEF456", 1200); print_parking_lot(&parking_lot); return 0; } ``` 这个示例中,我们使用了两个结构体:`Car` 和 `ParkingLot`。`Car` 结构体包含车牌号、进入时间和离开时间。`ParkingLot` 结构体包含一个 `Car` 数组和当前停车场中汽车的数量。 我们定义了三个函数:`add_car`、`remove_car` 和 `print_parking_lot`。`add_car` 函数用于添加车辆到停车场,`remove_car` 函数用于移除停车场中的车辆,`print_parking_lot` 函数用于打印当前停车场中的所有车辆信息。 在 `main` 函数中,我们创建了一个 `ParkingLot` 结构体,并使用 `add_car` 函数添加了三辆车。然后,我们使用 `remove_car` 函数将一辆车移除,并使用 `print_parking_lot` 函数打印当前停车场中所有车辆的信息。 这个示例只是一个简单的停车场管理系统数据结构,实际应用中可能需要更复杂的功能和更复杂的数据结构
评论 73
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值