資源簡介
1) 乘客查詢模塊
a) 線路查詢
能夠查詢各個線路的信息。如,17路的信息。(如起點、終點,行經(jīng)站點。。。)
b) 站點信息查詢
能夠查詢各個站點的信息。如,煙臺大學站點的信息。(如,地理位置,過路車輛,始發(fā)車輛)
c) 站站查詢
從站點A到站點B的路線
d) 乘車最優(yōu)路線選擇
從地點A到地點B的乘車最優(yōu)路線
2) 管理人員模塊
a) 線路管理
對所有線路能夠進行增刪改查詢排序的管理
b) 站點管理
對所有站點能夠進行增刪改查詢排序的管理
c) 車輛管理
對所有車輛能夠進行增刪改查詢排序的管理
d) 車輛發(fā)車表
每個線路一天的車輛發(fā)車表。如:5:00 魯F12345,5:20:魯F2345.。。
e) 車輛動態(tài)圖表
某一瞬間,全體車輛所在的位置,如,上午10:00 魯F123435 煙大北門,魯F2345 文經(jīng)學院
3) 統(tǒng)計模塊
a) 站點乘客分布
一個站點乘坐某線路車的人數(shù)總和
一個站點乘坐車的人數(shù)總和
b) 線路乘客分布
一趟的車載人數(shù)總和。如17路上午10:00發(fā)車的載人數(shù)
一天的一個線路的載人數(shù)總和。如17路一天的載人總和
整個公交系統(tǒng)的載人總和。
c) 車輛聚集度
一個站點所經(jīng)車輛的數(shù)目

代碼片段和文件信息
#include?“BusInfo.h“
void?BusInfo::setBusNumber(int?BusNumber)
{
this->BusNumber?=?BusNumber;
}
void?BusInfo::setBusRout(int?BusRout)
{
this->BusRout?=?BusRout;
}
void?BusInfo::setBusUserName(char?*BusUserName)
{
this->BusUserName?=?BusUserName;
}
void?BusInfo::setTrain_number(int?Train_number)
{
this->Train_number?=?Train_number;
}
int?BusInfo::getBusNumber()
{
return?this->BusNumber;
}
char*?BusInfo::getBusUserName()
{
return?this->BusUserName;
}
int?BusInfo::getBusRout()
{
return?this->BusRout;
}
int?BusInfo::getTrain_number()
{
return?this->Train_number;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????608??2013-05-23?17:43??BusSystem\BusInfo.cpp
?????文件????????409??2013-06-10?15:07??BusSystem\BusInfo.h
?????文件???????1840??2013-06-01?11:28??BusSystem\BusManage.cpp
?????文件????????451??2013-06-10?15:07??BusSystem\BusManager.h
?????文件???????6081??2013-06-10?16:51??BusSystem\BusSystem.dsp
?????文件????????526??2013-05-23?16:40??BusSystem\BusSystem.dsw
?????文件?????156672??2013-06-17?20:31??BusSystem\BusSystem.ncb
?????文件??????60928??2013-06-17?20:31??BusSystem\BusSystem.opt
?????文件????????252??2013-06-17?17:14??BusSystem\BusSystem.plg
?????文件???????5763??2013-06-10?15:12??BusSystem\Debug\BusInfo.obj
?????文件??????11831??2013-06-13?14:42??BusSystem\Debug\BusManage.obj
?????文件?????319549??2013-06-17?17:13??BusSystem\Debug\BusSystem.exe
?????文件?????453492??2013-06-17?17:13??BusSystem\Debug\BusSystem.ilk
?????文件??????43520??2013-06-03?23:19??BusSystem\Debug\BusSystem.opt
?????文件?????186956??2013-05-28?19:25??BusSystem\Debug\BusSystem.pch
?????文件????1377280??2013-06-17?16:53??BusSystem\Debug\BusSystem.pdb
?????文件??????10715??2013-05-28?11:00??BusSystem\Debug\li
?????文件???????1258??2013-05-28?21:00??BusSystem\Debug\Manager.obj
?????文件??????67375??2013-06-17?17:10??BusSystem\Debug\Passenger.obj
?????文件???????9754??2013-06-17?16:17??BusSystem\Debug\PeopleCount.obj
?????文件???????3612??2013-06-16?15:10??BusSystem\Debug\RoutInfo.obj
?????文件??????14106??2013-06-16?15:10??BusSystem\Debug\RoutManage.obj
?????文件???????6840??2013-06-10?15:12??BusSystem\Debug\RoutPeoCount.obj
?????文件??????16442??2013-06-03?23:19??BusSystem\Debug\RoutService.obj
?????文件??????11731??2013-06-17?16:17??BusSystem\Debug\StartTable.obj
?????文件???????9804??2013-06-13?14:42??BusSystem\Debug\StopInfo.obj
?????文件??????25618??2013-06-16?15:10??BusSystem\Debug\StopManage.obj
?????文件???????6895??2013-06-10?15:12??BusSystem\Debug\StopPeoCount.obj
?????文件??????94083??2013-06-17?16:29??BusSystem\Debug\Test.obj
?????文件??????15383??2013-06-16?14:58??BusSystem\Debug\TrainInfo.obj
............此處省略33個文件信息
評論
共有 條評論