哪位高手能帮忙翻译一下下面这段文字,谢谢.

哪位高手能帮忙翻译一下下面这段文字,谢谢.,第1张

Along with the calculator technical quick development, the calculator has already seeped through each social application realm.Year by year increase along with the school vehicle with continuously increase of the vehicle information, traditional artificial's manage has already seriously influenced the efficiency of vehicle management, so have to make use of a calculator to carry on a management.Domestic and international system software of the vehicle management has a lot currently, but pure aim at the management software of the vehicle of school development also a lot of, so carry on a development and study to the school vehicle's management very necessary.The development which manage system of this school vehicle and car is according to the VB6.0 application procedure and Access2003 databases, can pass VB window way to carry on an operation to the database.The system adoption customer carry/server(Clinet/Server) form, not only convenient carry out the search of vehicle and other informations, and consumedly raised procedure of can support sex with again make use of sex.

This text mainly analyzed mainly constitute of the system a circumstance, include system need analysis, the design principle of system, the data structure of the system, data process and main characteristics etc. of system.The point introduced the database design of system, the detailed way of thinking of the system function mold piece and carry out a method, and elaborate on the system parts of source codes.

可查可运行,注释详细,呵呵

#include<iostream>

#include<string>

using namespace std

#define MAX 2 //停车场车位数

#define price 0.5//每分钟收取的费用

typedef struct time

{

int hour

int min

}Time//定义时间结点

typedef struct node

{

string num

Time reach

Time leave

}CarNode//定义每辆车的牌号,进入时刻,开出时刻

typedef struct NODE

{

CarNode *stack[MAX+1]

int top

}SeqStackCar//用栈定义,构造停车场

typedef struct car

{

CarNode *data

struct car *next

}QueueNode//用队列结点定义,构造停车场外的单个等候车辆

typedef struct Node

{

QueueNode *head

QueueNode *rear

}LinkQueueCar//用队列定义,构造停车场外的等候便道

void InitStack(SeqStackCar *)//初始化堆栈函数声明

int InitQueue(LinkQueueCar *)//初始化队列头结点函数声明

int Arrival(SeqStackCar *,LinkQueueCar *)//车辆进入时登记函数声明

void Leave(SeqStackCar *,SeqStackCar *,LinkQueueCar *)//车辆离开时函数声明

void List(SeqStackCar,LinkQueueCar)/*查看停车场内车辆情况及

便道上车辆情况的函数声明*/

void main( )

{

SeqStackCar Enter,Temp//初始栈,中转栈

LinkQueueCar Wait//便道队列

int a

InitStack(&Enter)

InitStack(&Temp)

InitQueue(&Wait)//初始化

while(1)

{

cout<<"********************************************************************"<<endl

cout<<" 欢迎光临停车场!"

cout<<"(*^__^*) !"

cout<<endl<<"车辆到达登记->请按 1"

cout<<" 车辆离开登记->请按 2"<<endl

cout<<"车辆停靠查询->请按 3"

cout<<" 退出系统->请按 4"<<endl//系统选项设置

while(1)

{

cin>>a

if(a>=1&&a<=4) break

else cout<<endl<<"请选择: 1~4."

}

switch(a)

{

case 1:Arrival(&Enter,&Wait)break //调用 入 停车场函数

case 2:Leave(&Enter,&Temp,&Wait)break//调用 出 停车场函数

case 3:List(Enter,Wait)break//调用查看函数

case 4:exit(0)

default: break

}

}

}

void InitStack(SeqStackCar *s) //堆栈初始化

{

s->top=0

s->stack[s->top]=NULL

}

int InitQueue(LinkQueueCar *Q)//队列初始化

{

Q->head=new QueueNode

if(Q->head!=NULL)

{

Q->head->next=NULL

Q->rear=Q->head

return 1

}

else return -1

}

void PRINT(CarNode *p,int room) //输出离开停车场的车辆情况

{

int A,B,C,D

cout<<"\n车辆离开的时间:"

cin>>p->leave.hour>>p->leave.min

cout<<"离开车辆的车牌号为:"

cout<<p->num

cout<<endl<<"其到达时间为: "<<p->reach.hour<<":"<<p->reach.min

cout<<"离开时间为: "<<p->leave.hour<<":"<<p->leave.min

A=p->reach.hour

B=p->reach.min

C=p->leave.hour

D=p->leave.min

cout<<endl<<"应交费用为: "<<((C-A)*60+(D-B))*price<<"元"<<endl

cout<<"车辆离开登记完毕!"<<endl

cout<<"*********************************************************************"<<endl

delete p

}

int Arrival(SeqStackCar *Enter,LinkQueueCar *W)

{

CarNode *p

QueueNode *t

p=new CarNode

cout<<"*********************************************************************"<<endl

cout<<"车辆到达登记开始:"<<endl

cout<<endl<<"请输入车牌号:"

cin>>p->num

if(Enter->top<MAX)//如果车位未满则进停车场内

{

Enter->top++

cout<<endl<<"车辆在车场第"<<Enter->top<<"位置."

cout<<endl<<"车辆到达时间:"

cin>>p->reach.hour>>p->reach.min

cout<<endl<<"车辆到达登记完毕!"<<endl

cout<<"*********************************************************************"<<endl

Enter->stack[Enter->top]=p// p是那辆汽车

return 1

}

else //如果车位已满,则停靠在便道上

{

cout<<"*********************************************************************"<<endl

cout<<endl<<"该车须在便道等待!有车位时进入车场"<<endl

t=new QueueNode

t->data=p

t->next=NULL

W->rear->next=t

W->rear=t

return 1

}

}

void Leave(SeqStackCar *Enter,SeqStackCar *Temp,LinkQueueCar *W)

{

int room

CarNode *p,*t

QueueNode *q

if(Enter->top>0)

{

while(1)

{

cout<<"*********************************************************************"<<endl

cout<<"车辆离开登记开始:"<<endl

cout<<endl<<"请输入车在车场的位置/1--"<<Enter->top<<"/:"

cin>>room

if(room>=1&&room<=Enter->top) break

}

while(Enter->top>room)//从停车场堆栈向中转堆栈移动车辆,直到要离开车辆的位置停止

{

Temp->top++

Temp->stack[Temp->top]=Enter->stack[Enter->top]

Enter->stack[Enter->top]=NULL

Enter->top--

}

p=Enter->stack[Enter->top]

Enter->stack[Enter->top]=NULL

Enter->top--

while(Temp->top>=1)//将中转堆栈中的车辆移回停车场堆栈

{

Enter->top++

Enter->stack[Enter->top]=Temp->stack[Temp->top]

Temp->stack[Temp->top]=NULL

Temp->top--

}

cout<<"*********************************************************************"<<endl

cout<<"车辆离开登记结算:"<<endl

PRINT(p,room)

if((W->head!=W->rear)&&Enter->top<MAX)

{

q=W->head->next

t=q->data

Enter->top++

cout<<endl<<"便道的"<<t->num<<"号车进入车场第"

cout<<Enter->top<<"位置."<<endl

cout<<"请输入"<<t->num<<"号车进入车场的时间:"

cin>>t->reach.hour>>t->reach.min

W->head->next=q->next

if(q==W->rear) W->rear=W->head

Enter->stack[Enter->top]=t

delete q

}

else cout<<endl<<"便道里没有车"<<endl

}

else cout<<endl<<"车场里没有车."<<endl

}

void List1(SeqStackCar *S) //查看停车场内车辆情况的函数定义

{

int i

if(S->top>0)

{

cout<<"********************************************************************"<<endl

cout<<endl<<"车场内部车辆停靠情况:"<<endl

cout<<endl<<"位置 到达时间车牌号"<<endl

for(i=1i<=S->topi++)

{

cout<<i

cout<<" "<<S->stack[i]->reach.hour<<":"<<S->stack[i]->reach.min

cout<<""<<S->stack[i]->num<<endl

}

}

else cout<<endl<<"车场里没有车"<<endl

cout<<"********************************************************************"<<endl

}

void List2(LinkQueueCar *W) //查看便道上停靠车辆情况的函数定义

{

QueueNode *p

p=W->head->next

if(W->head!=W->rear)

{

cout<<"********************************************************************"<<endl

cout<<endl<<"便道停靠车辆情况:"<<endl

while(p!=NULL)

{

cout<<endl<<"车辆牌号:"

cout<<p->data->num<<endl

p=p->next

}

}

else cout<<endl<<"便道里没有车."<<endl

cout<<"********************************************************************"<<endl

}

void List(SeqStackCar S,LinkQueueCar W) //车辆列表显示函数

{

int flag,tag

flag=1

while(flag)

{

cout<<"********************************************************************"<<endl

cout<<"车辆停靠查询开始:"<<endl

cout<<endl<<"请选择 1|2|3:"<<endl

cout<<"1.车场列表"<<endl<<"2.便道列表"<<endl<<"3.返回主菜单"<<endl

while(1)

{

cin>>tag

if(tag>=1||tag<=3) break

else cout<<endl

cout<<"请选择 1~3:"

}

switch(tag)

{

case 1:List1(&S)

cout<<"车辆停靠查询结束!"<<endlbreak

case 2:List2(&W)

cout<<"车辆停靠查询结束!"<<endlbreak

case 3:flag=0break

default: break

}

}cout<<"********************************************************************"<<endl

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6803162.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-28
下一篇 2023-03-28

发表评论

登录后才能评论

评论列表(0条)

保存