资源简介
给出n个学生的m门考试的成绩表,每个学生的信息由学号、姓名以及各科成绩组成。对学生的考试成绩进行有关统计,并打印统计表。对此我们先假定学生共有四门课程分数:语文、数学、英语及数据结构成绩。
代码片段和文件信息
#include“List.h“
List::List()
{
count = 0;
head = NULL;
}
List::~List()
{
student *p *q;
p = head;
for(int i = 0;i != count;i ++)
{
q = p->next;
delete p;
p = q;
}
count = 0;
head = NULL;
}
Error_code List::insert(int position const std::string nam const std::string num
const int Chi const int math const int Eng const int data)
{
if (position < 0 || position > count)
return range_error;
student *new_student *previous *following;
if (position > 0)
{
previous = set_position(position - 1);
following = previous->next;
}
else
following = head;
new_student = new student(nam num Chi math Eng data following);
if (new_student == NULL)
return overflow;
if (position == 0)
head = new_student;
else
previous->next = new_student;
count++;
return success;
}
student* List::set_position(int position) const
{
student *q = head;
for (int i = 0; i < position; i++)
{
q = q->next;
}
return q;
}
void List::insertion_sort()
{
student *first_unsorted
*last_sorted
*current
*trailing;
if(head!=NULL)
{
last_sorted = head;
int n = this->count;
for(int i=1 ;i {
first_unsorted = last_sorted->next;
if(first_unsorted->total > head->total)
{
// Insert *first_unsorted at the head of the sorted list:
last_sorted->next = first_unsorted->next;
first_unsorted->next = head;
head = first_unsorted;
}
else
{
trailing = head;
current = trailing->next;
// Search the sorted sublist to insert *first_unsorted:
while(first_unsorted->total < current->total){
trailing = current;
current = trailing->next;
}
// *first_unsorted now belongs between *trailing and *current
if(first_unsorted==current)
last_sorted = first_unsorted; // already in right position
else
{
last_sorted->next = first_unsorted->next;
first_unsorted->next = current;
trailing->next = first_unsorted;
}
}
}
}
}
void List::traverse(void (*visit)(std::string &numstd::string &name int &total int &chineseint &math int &english int &datastr))
{
student *q;
q = head;
for (int i = 0;i != count;i ++)
{
(*visit)(q->numberq->nameq->totalq->Chineseq->Mathq->Englishq->DataStruction);
q = q->next;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 39202 2012-06-13 22:21 统计成绩\Debug\List.obj
文件 266686 2012-06-13 19:30 统计成绩\Debug\main.obj
文件 35238 2012-06-13 19:30 统计成绩\Debug\student.obj
文件 156672 2012-06-13 22:21 统计成绩\Debug\vc60.idb
文件 135168 2012-06-13 22:21 统计成绩\Debug\vc60.pdb
文件 557140 2012-06-13 22:21 统计成绩\Debug\统计成绩.exe
文件 808072 2012-06-13 22:21 统计成绩\Debug\统计成绩.ilk
文件 2058988 2012-06-13 22:21 统计成绩\Debug\统计成绩.pch
文件 1426432 2012-06-13 22:21 统计成绩\Debug\统计成绩.pdb
文件 2532 2012-06-13 22:20 统计成绩\List.cpp
文件 558 2012-06-13 22:21 统计成绩\List.h
文件 2094 2012-06-13 19:30 统计成绩\main.cpp
文件 411 2012-06-13 19:30 统计成绩\resource.h
文件 2566 2012-06-13 19:30 统计成绩\sc
文件 327 2012-06-13 19:30 统计成绩\student.cpp
文件 494 2012-06-13 19:30 统计成绩\student.h
文件 0 2012-06-13 19:30 统计成绩\utility.asp
文件 193 2012-06-13 19:30 统计成绩\utility.h
文件 4606 2012-06-13 19:30 统计成绩\统计成绩.dsp
文件 524 2012-06-13 19:30 统计成绩\统计成绩.dsw
文件 82944 2012-06-13 22:21 统计成绩\统计成绩.ncb
文件 50688 2012-06-13 22:21 统计成绩\统计成绩.opt
文件 1338 2012-06-13 22:21 统计成绩\统计成绩.plg
目录 0 2012-06-13 22:21 统计成绩\Debug
目录 0 2012-06-13 22:21 统计成绩
----------- --------- ---------- ----- ----
5632873 25
相关资源
- 二叉树的构造与遍历
- OPENGL可一走动的人
- 数据结构的渡口调度管理
- 数据结构与算法考试复习试题和答案
- 数据结构6种排序方法
- 数据结构课程设计纸牌游戏
- 数据结构 joseph环 含源代码
- Myrecord.rar
- 随机数数据折线图
- 基于4的FFT变换
- VirtualList.7z
- 数据结构课设报告之迷宫.docx
- QT实现计算器包含科学计算与进制转换
- 数据结构课程设计全部系统合集超市
- QT text预加载方式显示大文件文本.zi
- 中南民大数据结构-八皇后问题含实验
- 计算机图形学四面体几何变换.doc
- 2017--山东大学数据结构实验报告,实
- 回溯法、遗传算法、CSP最小冲突法解
- 数据结构-校园导游图
- 数据结构课程设计(排序综合)
- 基于数据报套接字的回射程序设计与
- 操作系统实验报告-文件系统
- 3种不同语言的BP算法
- 数据结构课程设计实验报告后缀表达
- 数据结构大作业+设计说明书
- 华东理工大学计算机815数据结构考研
- 冒险岛吸怪无敌 源码
- API函数大全(中文)
- 数据结构习题集答案--清华大学版
评论
共有 条评论