收藏 分销(赏)

C教师信息标准管理系统.doc

上传人:天**** 文档编号:3031769 上传时间:2024-06-13 格式:DOC 页数:22 大小:132.04KB
下载 相关 举报
C教师信息标准管理系统.doc_第1页
第1页 / 共22页
C教师信息标准管理系统.doc_第2页
第2页 / 共22页
C教师信息标准管理系统.doc_第3页
第3页 / 共22页
C教师信息标准管理系统.doc_第4页
第4页 / 共22页
C教师信息标准管理系统.doc_第5页
第5页 / 共22页
点击查看更多>>
资源描述

1、一、 课程设计问题描述学院教学信息管理系统是高等学校教务管理关键组成部分,其内容较多,为了简化计论,要求设计管理系统能够完成以下功效:(1)输入:输入每一位老师统计,将其信息写入文件中;(2)显示:显示每位老师统计;(3)排序:按职员号或教学效果综合评分进行排序,并显示;(4)查找:完成按姓名或课程查找老师相关统计,并显示;(5)创建:创建新纪录,输入数位老师统计,显示在屏幕上并保留;二、 课程设计目标和要求:经过一个学期C+面向对象实用教程课程学习,已经有了一定地程序设计基础,不过要学好C+程序设计,不仅要认真阅读书本知识和从事课堂学习,更关键是要进行上机实践,经过上机实践才能增强和巩固知识

2、。三、 系统设计(算法分析)1、 整体结构整个程序定义四个类(1) CPerson类:包含数据组员name,age,sex,统计姓名,年纪,性别这些信息,并包含结构函数及其它组员函数(定义CPerson类以后若有需要,可再经过继承派生其它类);(2) CTeacher:共有继承CPerson类,包含数据组员title,teano,course,score,分别统计职称,职员号,3门课程和教学效果综合评分等信息,另有其它组员函数;(3) CNode类:节点类,包含2个数据组员,CTeacher类对象p和CNode类指针对象next,作为构建链表单位;(4) CList类:链表类,申明为CNode

3、类友元类,数据组员有头结点head,尾节点tail,统计目前节点p和目前节点前一节点pre,链表相关输入,显示,排序,查找,创建全部设为组员函数。总体步骤为先打开文件,读取文件中统计来创建链表,然后对链表进行操作,最终保留至文件中2、步骤图开始打开文件读取统计输入choicechoice=0? 是 否查找排序创建新纪录添加统计显示目前统计保留 是保留 否结束3、 各函数功效和实现学院教学信息管理系统相关功效由对应函数来实现。(1) 输入老师信息并显示void Append()经过提醒一步步输入信息,由程序构建新节点并加入链表(2) 显示全部统计void Print()(3)按职员号或教学效果综

4、合评分排序并显示int SortMenu()void SortMenuControl()void InsertByTeano(CNode *newp)void SortByTeano()void InsertByScore(CNode *newp)void SortByScore()(4)按姓名或课程查找老师统计并显示int SearchMenu()void SearchMenuControl()void SearchByName()void SearchByCourse()四、程序源代码#include stdafx.h#include #include #include #include

5、#include #include using namespace std;class CPersonprivate:string name;int age;char sex;public:CPerson()CPerson(string name,int age=0,char sex=M)this-name=name;this-age=age;this-sex=sex;void SetAge(int age=0)this-age=age;void SetNameAndSex(string name,char sex)this-name=name;this-sex=sex;void ShowIn

6、fo()coutnametaget(sex=M?男:女)endl;string GetName()return name;int GetAge()return age;char GetSex()return sex;class CTeacher:public CPersonprivate:string title;/职称string teano;/职员号vector course;/教讲课程float score;/教学效果综合评分public:CTeacher()CTeacher(string name,int age=0,char sex=M):CPerson(name,age,sex)v

7、oid SetData(string title,string teano)this-title=title;this-teano=teano;void SetCourse(string c1,string c2,string c3)course.push_back(c1);course.push_back(c2);course.push_back(c3);void SetScore(float score)this-score=score;void ShowInfo()coutteanotGetName()tGetAge()t(GetSex()=M?男:)titletcourse0tcour

8、se1tcourse2tscoretitle=one.title;this-teano=one.teano;this-course0=one.course0;this-course1=one.course1;this-course2=one.course2;this-score=one.score;vector GetCourse()return course;string GetTitle()return title;string GetTeano()return teano;float GetScore()return score;class CNodefriend class CList

9、;private:CTeacher data;CNode *next;class CListprivate:CNode *head;CNode *tail;CNode *p;CNode *pre;int num;/目前节点数public:int MainMenu()cout1.显示目前统计endl;cout2.添加统计endl;cout3.排序endl;cout4.查找endl;cout5.创建新纪录endl;cout0.退出endl;coutchoice;return choice;void MainMenuControl()ReadData();while ( 1 )int choice=

10、MainMenu();if ( choice=0 )break;switch ( choice )case 1:Print();break;case 2:Append();break;case 3:SortMenuControl();break;case 4:SearchMenuControl();break;case 5:NewList();break;coutc;if ( c=y )Save();void ReadData()head=tail=new CNode;head-next=NULL;num=0;char fname80;coutfname;ifstream file(fname

11、);if ( !file )cout出现未知错误造成无法打开!teanonameagesextitlecourse0course1course2score;p=new CNode;p-data.SetNameAndSex(name,sex);p-data.SetAge(age);p-data.SetData(title,teano);p-data.SetCourse(course0,course1,course2);p-data.SetScore(score);tail-next=p;tail=p;num+;tail-next=NULL;void Print()for ( p=head-nex

12、t; p!=NULL; p=p-next)p-data.ShowInfo();coutendl;void Append()while ( 1 )p=new CNode;cout请输入:endl;coutname;coutage;coutsex;p-data.SetNameAndSex(name,sex);p-data.SetAge(age);couttitle;coutteano;p-data.SetData(title,teano);coutcourse0course1course2;p-data.SetCourse(course0,course1,course2);coutscore;p-

13、data.SetScore(score);p-next=tail-next;tail-next=p;tail=p;num+;char c;coutc;cin.get();if ( c!=y )break;tail-next=NULL;Print();int SortMenu()cout1.按职员号排序endl;cout2.按教学效果综合评分排序endl;cout0.退出endl;coutchoice;return choice;void SortMenuControl()while ( 1 )int choice=SortMenu();if ( choice=0 )break;switch (

14、 choice )case 1:SortByTeano();break;case 2:SortByScore();break;Print();void InsertByTeano(CNode *newp)for ( pre=head,p=head-next; p!=NULL; pre=p,p=p-next)if ( newp-data.GetTeano() data.GetTeano() )break;newp-next=p;pre-next=newp;void SortByTeano()p=head-next;head-next=NULL;CNode *nextp;while ( p!=NU

15、LL )nextp=p-next;InsertByTeano(p);p=nextp;void InsertByScore(CNode *newp)for ( pre=head,p=head-next; p!=NULL; pre=p,p=p-next)if ( newp-data.GetScore() data.GetScore() )break;newp-next=p;pre-next=newp;void SortByScore()p=head-next;head-next=NULL;CNode *nextp;while ( p!=NULL )nextp=p-next;InsertByScor

16、e(p);p=nextp;int SearchMenu()cout1.按姓名查找endl;cout2.按课程查找endl;cout0.退出endl;coutchoice;return choice;void SearchMenuControl()while ( 1 )int choice=SearchMenu();if ( choice=0 )break;switch ( choice )case 1:SearchByName();break;case 2:SearchByCourse();break;void SearchByName()int n=0;coutname;for ( p=he

17、ad-next; p!=NULL; p=p-next)if ( p-data.GetName()=name)p-data.ShowInfo();n+;if ( n=0 )cout没有相关统计endl;coutendl;void SearchByCourse()int n=0;coutc;for ( p=head-next; p!=NULL; p=p-next)vector course=p-data.GetCourse();for (int i=0; idata.ShowInfo();n+;break;if ( n=0 )cout没有相关统计endl;coutnext=NULL;while (

18、 1 )p=new CNode;cout请输入:endl;coutname;coutage;coutsex;p-data.SetNameAndSex(name,sex);p-data.SetAge(age);couttitle;coutteano;p-data.SetData(title,teano);coutcourse0course1course2;p-data.SetCourse(course0,course1,course2);coutscore;p-data.SetScore(score);tail-next=p;tail=p;num+;coutc;cin.get();if ( c!

19、=y )break;tail-next=NULL;void Save()char fname80;coutfname;ofstream file(fname);if ( !file )cout出现未知错误造成无法打开!next; p!=NULL; p=p-next)vector course=p-data.GetCourse();filedata.GetTeano()tdata.GetName()tdata.GetAge()tdata.GetSex()tdata.GetTitle()tcourse0tcourse1tcourse2tdata.GetScore()next; p!=NULL; p

20、=head-next)head-next=p-next;delete p;delete head;head=NULL;tail=NULL;pre=NULL;num=0;CList()for ( p=head-next; p!=NULL; p=head-next)head-next=p-next;delete p;delete head;head=NULL;tail=NULL;pre=NULL;int main(int argc, char* argv)CList list1;list1.MainMenuControl();CList list2;list2.MainMenuControl();return 0;五、缺点1.每次全部要读取文件中统计,若是只想创建新统计,则此部多出;2.判定文件末尾语句file.peek()!=EOF,当文件末尾为图一所表示是可正常读取完,若图二所表示,则会多读一次;图一图二3.没有控制输出格式,输出格式混乱,不美观;4.输入时没有错误输入检测,所以必需正确输入才能确保程序正常运行,如输入文件名时必需完全正确,输入性别是必需输入M/F。

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 包罗万象 > 大杂烩

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服