qt银行排队系统服务器代码,基于qt的银行排队系统

【实例简介】

该系统采用qt编写,分为client端,server端与employee端,采用udpsocket实现通讯,能够实现取号,叫号与经理检查的功能

【实例截图】

【核心代码】

bank

└── bank

├── demo_client

│   ├── Makefile

│   ├── Makefile.Debug

│   ├── Makefile.Release

│   ├── client.cpp

│   ├── client.h

│   ├── client.o

│   ├── client.ui

│   ├── debug

│   │   ├── client.o

│   │   ├── demo_client.exe

│   │   ├── logdia.o

│   │   ├── main.o

│   │   ├── moc_client.cpp

│   │   ├── moc_client.o

│   │   ├── moc_logdia.cpp

│   │   └── moc_logdia.o

│   ├── demo_client

│   ├── demo_client.pro

│   ├── demo_client.pro.user

│   ├── demo_client.pro.user.1.3

│   ├── logdia.cpp

│   ├── logdia.h

│   ├── logdia.o

│   ├── logdia.ui

│   ├── main.cpp

│   ├── main.o

│   ├── moc_client.cpp

│   ├── moc_client.o

│   ├── moc_logdia.cpp

│   ├── moc_logdia.o

│   ├── ui_client.h

│   └── ui_logdia.h

├── employee

│   ├── Makefile

│   ├── Makefile.Debug

│   ├── Makefile.Release

│   ├── debug

│   │   ├── emp.o

│   │   ├── employee.exe

│   │   ├── main.o

│   │   ├── mainwindow.o

│   │   ├── manager.o

│   │   ├── moc_emp.cpp

│   │   ├── moc_emp.o

│   │   ├── moc_mainwindow.cpp

│   │   ├── moc_mainwindow.o

│   │   ├── moc_manager.cpp

│   │   └── moc_manager.o

│   ├── emp.cpp

│   ├── emp.h

│   ├── emp.o

│   ├── emp.ui

│   ├── employee

│   ├── employee.pro

│   ├── employee.pro.user

│   ├── employee.pro.user.1.3

│   ├── main.cpp

│   ├── main.o

│   ├── mainwindow.cpp

│   ├── mainwindow.h

│   ├── mainwindow.o

│   ├── mainwindow.ui

│   ├── manager.cpp

│   ├── manager.h

│   ├── manager.o

│   ├── manager.ui

│   ├── moc_emp.cpp

│   ├── moc_emp.o

│   ├── moc_mainwindow.cpp

│   ├── moc_mainwindow.o

│   ├── moc_manager.cpp

│   ├── moc_manager.o

│   ├── ui_emp.h

│   ├── ui_mainwindow.h

│   └── ui_manager.h

└── server

├── Makefile

├── Makefile.Debug

├── Makefile.Release

├── debug

│   ├── main.o

│   ├── moc_server.cpp

│   ├── moc_server.o

│   ├── server.exe

│   └── server.o

├── employee

│   ├── Makefile

│   ├── emp.cpp

│   ├── emp.h

│   ├── emp.o

│   ├── emp.ui

│   ├── employee

│   ├── employee.pro

│   ├── employee.pro.user

│   ├── main.cpp

│   ├── main.o

│   ├── mainwindow.cpp

│   ├── mainwindow.h

│   ├── mainwindow.o

│   ├── mainwindow.ui

│   ├── manager.cpp

│   ├── manager.h

│   ├── manager.o

│   ├── manager.ui

│   ├── moc_emp.cpp

│   ├── moc_emp.o

│   ├── moc_mainwindow.cpp

│   ├── moc_mainwindow.o

│   ├── moc_manager.cpp

│   ├── moc_manager.o

│   ├── ui_emp.h

│   ├── ui_mainwindow.h

│   └── ui_manager.h

├── main.cpp

├── main.o

├── moc_server.cpp

├── moc_server.o

├── server

├── server.cpp

├── server.h

├── server.o

├── server.pro

├── server.pro.user

├── server.pro.user.1.3

├── server.ui

└── ui_server.h

8 directories, 120 files

//活期储蓄处理中,储户开户、销户、存入、支出活动频繁,系统设计要求: //1)能比较迅速地找到储户的帐户,以实现存款、取款记账; //2)能比较简单,迅速地实现插入和删除,以实现开户和销户的需要。 #include #include #include using namespace std; int total; //初始时银行现存资金总额 int closeTime; //营业结束时间 int arriveTime; //两个到达事件之间的间隔上限 int dealTime; //客户之间交易的时间上限 int dealMoney = 30000; //交易额上限 int currentTime = 0; //当前时间 int totalTime = 0; //客户逗留总时间 int counter = 0; //客户总数 int number = 1; //初始客户序列号+ struct service { int num; //客户号 string type; //到达或离开 int beginTime; int endTime; int money; //正数为存款,负数为取款 service* next; }; struct queue { //队列 service* head; service* rear; }; void push(queue &q,int d) {// 插入元素d为Q的新的队尾元素 service* temp = new service; temp->money = d; temp->next = NULL; if(NULL == q.head) {//队列为空,初始化 q. head = temp; q. rear = temp; }//if else {//队列不为空,插入元素d q. rear->next = temp; q. rear = q.rear->next; }//else } void pop(queue &q) {// 若队列不空,出对列函数 service* temp; temp = q. head; if(NULL ==q. head->next) q.head = q. rear =NULL; else q. head=q. head->next; delete temp; } service* front(queue &q) {//返回队首元素 return q. head; } service* back(queue &q) {//返回队尾元素 return q. rear; } service* searchAndDel(queue &q,int m) {//在队列中寻找可处理元素 service* sign = q. head; //标记头节点 service* temp; while(NULL != q. head) { if((-(q. head->money)) next; // 首节点后移一位,返回原首节点 return temp; // 开办.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "stdlib.h" #include "string.h" #include "ctype.h" #include #include /* ---------------- */ void apply(); /* 申请帐号 */ void land(); /* 登陆系统 */ void finds(); /* 查询存款 */ void saving(); /* 存钱 */ void get(); /* 取款 */ void turn(); /* 转帐 */ /* --------------------- */ struct per { char name[20]; char accounts[20]; char password[20]; int money; }dat,temp; /* ----------- */ void manage() /* 主函
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值