【C++--04】实验报告:数组、指针及引用;冒泡排序与二维数组存储学生信息;

目录

 

一.实验目的:

二.实验任务:

三.实验内容:

1.冒泡排序实验分析:

2.冒泡排序实验代码:

3.冒泡排序实验结果:

4.二维数组实验分析:

5.实验代码

6.运行结果:

四.实验总结:


一.实验目的:

 

  1. 掌握用指针及引用作参数编写程序的知识技能;
  2. 提高学习者面向对象程序开发工具的自学习能力;
  3. 掌握一维数组和二维数组的定义、赋值和输入输出的方法。
  4. 能正确使用数组的指针和指向数组的指针变量。
  5. 通过编写程序理解并熟练掌握指针的概念;

二.实验任务:

  1. 能对数据进行排序的程序;
  2. 能运用二维数组能熟练对学生成绩进行输入,查找,排序,输出等功能并提交程序。
  3. 设计一个程序,把有10个整数元素的数组用冒泡排序法按由小到大升序排列。
  4. 设计一个程序,二维数组:M个同学N门课成绩处理,字符数组存放姓名。

三.实验内容:

1.冒泡排序实验分析:

  1. 冒泡排序分降序升序两种排序方式。
  2. 它们的唯一区别就是两个数交换的条件不同,降序排序是前面的数比后面的小的时候交换;
  3. 而升序排序是前面的数比后面的数大的时候交换。
  4. 如果该次循环没有发生一次数的交换,就说明数组已经排好序了,则停止循环。

2.冒泡排序实验代码:

#include<stdlib.h>
#include<iostream>
using namespace std;
int main(){
	const int n = 11;
	int i, j, t;

	int a[n];

	cout << "请输入10个整数:" << endl;

	for (i = 1; i < n; i++){
		cin >> a[i];

	}

	for (j = 1; j < n - 1; j++){
		for (i = 1; i < n - j; i++){
			if (a[i] > a[i + 1]){
				t = a[i];
				a[i] = a[i + 1];
				a[i + 1] = t;
			}
		}
	}

	cout << "排序后为:" << endl;
	for (i = 1; i < n; i++){
		cout << "  " << a[i];
	}

	cout << endl;


		return 0;

}

3.冒泡排序实验结果:

4.二维数组实验分析:

  1. 定义一个二维数组 a[m][n] 存放 m 个人 n 门课的成绩;
  2. 字符数组存放姓名;
  3. 能熟练对学生成绩进行输入,查找,排序,输出等功能;
  4. 定义一个结构体,包含学生姓名,学生学号,成绩存放;
  5. 定义一个函数用来输入学生姓名,和学号,成绩,并按照学号升序排列;
  6. 定义一个函数进行学生信息查找,姓名查找和学号查找;

5.实验代码

#include <iostream>
#include <cstring>
#define NAME_LENGTH 10
#define N 3
#define M 3
using namespace std;

typedef struct StudentScore
{
	char name[NAME_LENGTH];
	int * scoreArry;
	int total;
}SS;

//计算每个学生的总分
void totalScores(SS *stuArry)
{
	for (int i = 0; i < M; i++)
	{
		stuArry[i].total = 0;
		for (int j = 0; j < N; j++)
		{
			stuArry[i].total += stuArry[i].scoreArry[j];
		}
	}
}
//显示学生信息
void outPutStu(SS &stu)
{
	cout << "学生姓名:" << stu.name << endl;
	for (int i = 0; i < N; i++)
	{
		cout << "第" << i + 1 << "门课的成绩:" << stu.scoreArry[i] << endl;
	}
	cout << "总分:" << stu.total << endl << endl;
}

void swap(SS &stu1, SS &stu2)
{
	SS tmp;
	//交换姓名
	strcpy_s(tmp.name, NAME_LENGTH, stu1.name);
	strcpy_s(stu1.name, NAME_LENGTH, stu2.name);
	strcpy_s(stu2.name, NAME_LENGTH, tmp.name);
	//交换分数列表
	tmp.scoreArry = stu1.scoreArry;
	stu1.scoreArry = stu2.scoreArry;
	stu2.scoreArry = tmp.scoreArry;
	//交换总分
	tmp.total = stu1.total;
	stu1.total = stu2.total;
	stu2.total = tmp.total;
}

//查找学生
void StuSerch(SS * stuArry)
{
	char serch_name[NAME_LENGTH];
	int serch_total;
	int serch_index, serch_score;
	cout << "请输入查找条件(0按姓名,1按总成绩,2按单科成绩,3退出查找):";
	int count = 0, way;
	while (true)
	{
		cin >> way;
		if (way != 0 && way != 1 && way != 2 && way != 3)
		{
			cout << "请输入正确的查找条件!";
			continue;
		}
		else
			break;
	}

	//查找
	switch (way)
	{
	case 0:
		cout << "请输入学生姓名:";
		cin >> serch_name;
		for (int i = 0; i < M; i++)
		{
			if (strcmp(serch_name, stuArry[i].name) == 0)
			{
				if (count == 0)
				{
					cout << "查找到的学生信息为:\n\n";
				}
				outPutStu(stuArry[i]);
				count++;
			}
		}
		break;
	case 1:
		cout << "请输入学生总分:";
		cin >> serch_total;
		for (int i = 0; i < M; i++)
		{
			if (serch_total == stuArry[i].total)
			{
				if (count == 0)
				{
					cout << "查找到的学生信息为:\n\n";
				}
				outPutStu(stuArry[i]);
				count++;
			}
		}
		break;
	case 2:
		while (true)
		{
			cout << "请输入要查找的课程:";

			cin >> serch_index;
			if (serch_index > 0 && serch_index <= N)
			{
				break;
			}
			else
			{
				cout << "课程编号不在范围内,最大为" << N << endl << endl;
			}
		}
		cout << "请输入该门课程分数:";
		cin >> serch_score;
		for (int i = 0; i < M; i++)
		{
			if (serch_score == stuArry[i].scoreArry[serch_index - 1])
			{
				if (count == 0)
				{
					cout << "查找到的学生信息为:\n\n";
				}
				outPutStu(stuArry[i]);
				count++;
			}
		}
		break;
	case 3:
		return;
	}
	if (0 == count)
	{
		cout << "没有找到符合条件的学生信息!\n\n";
	}
}

//成绩排序
void StuSort(SS *stuArry)
{
	int way = 0;
	int max = stuArry[M - 1].total, min = stuArry[M - 1].total, maxIndex = M - 1, minIndex = M - 1;
	while (true)
	{
		cout << "请输入排序方式(0升序,1降序):";
		cin >> way;
		if (way != 0 && way != 1)
		{
			cout << "请输入有效的方式!\n\n";
		}
		else
			break;
	}
	switch (way)
	{
	case 0:
		//升序
		for (int i = M - 1; i > 0; i--)
		{
			for (int j = 0; j <= i; j++)
			{
				if (stuArry[j].total > max)
				{
					max = stuArry[j].total;
					maxIndex = j;
				}
			}
			swap(stuArry[maxIndex], stuArry[i]);
		}
		cout << "升序排序后的学生信息列表:\n\n";
		for (int i = 0; i < M; i++)
		{
			outPutStu(stuArry[i]);
		}
		break;
	case 1:
		//降序
		cout << "降序排序后的学生信息列表:\n\n";
		for (int i = M - 1; i > 0; i--)
		{
			for (int j = 0; j <= i; j++)
			{
				if (stuArry[j].total < min)
				{
					min = stuArry[j].total;
					minIndex = j;
				}
			}
			swap(stuArry[minIndex], stuArry[i]);
		}
		for (int i = 0; i < M; i++)
		{
			outPutStu(stuArry[i]);
		}
		break;
	}
}
int main(void)
{
	SS stuArry[M];
	int scoreArry[M][N];
	//每行表示一个同学的成绩
	for (int i = 0; i < M; i++)
	{
		stuArry[i].scoreArry = scoreArry[i];
	}
	char tmp;
	//输入学生成绩
	for (int i = 0; i < M; i++)
	{
		cout << "请输入第" << i + 1 << "位同学的姓名:";
		cin >> stuArry[i].name;
		for (int j = 0; j < N; j++)
		{
			cout << "请输入" << stuArry[i].name << "的第" << j + 1 << "门课程的成绩:";
			cin >> stuArry[i].scoreArry[j];
			fflush(stdin);
			cin.clear();
			if (stuArry[i].scoreArry[j] > 100 || stuArry[i].scoreArry[j] < 0)
			{
				cout << "请重新输入" << stuArry[i].name << "的第" << j + 1 << "门课程的成绩:";
				j--;
				continue;
			}
		}
	}

	cout << endl << endl;

	//计算每个学生的总分
	totalScores(stuArry);

	int command;
	while (true)
	{
		cout << "请输入要进行的操作(0查找,1排序):";

		cin >> command;
		//while (cin >> tmp)continue;

		if (command != 0 && command != 1)
		{
			cout << "请输入正确的指令!\n\n";
			continue;
		}
		switch (command)
		{
		case 0:
			//查找学生
			StuSerch(stuArry);
			break;
		case 1:
			//成绩排序
			StuSort(stuArry);
			break;
		}

	}

	system("pause");
	return 0;
}

6.运行结果:

四.实验总结:

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值