第13课 一维数组

文章目录

  • 前言
  • 一、数组的概念
  • 二、一维数组的定义
  • 三、一维数组的初始化
  • 四、一维数组的使用及举例
    • 1. 元素顺次前移的问题
    • 2. 数组元素逆序调整问题
    • 3. 统计输入的各个数据的个数
  • 五、课后练习
    • 1. 从数组中查找某个元素
    • 2. 求一个数组中元素的平均值和均方差
    • 3. 编程统计某班某次考试的平均成绩和均方差
    • 4. 求一个列表的中位数
    • 5. 使用数组输出Fibonacci数列的前40项
    • 6. 二分查找——在一个有序列表中查找某个元素
    • 7. 改进的二分查找——在一个有序列表中查找某个元素
  • 总结


前言

C++是一种面向对象编程语言,其中数组是其中一种重要的数据结构。数组是一个数据对象集合,其中每个元素都具有相同的数据类型,并且可以根据其所在的位置(即索引)进行查询和引用。


一、数组的概念

二、一维数组的定义

三、一维数组的初始化

四、一维数组的使用及举例

1. 元素顺次前移的问题

有一个整数数组,数组元素由n个,用键盘输入,试着将数组的第一个元素移到数组末尾,其余的数组元素依次前移一个位置后顺序输出。

2. 数组元素逆序调整问题

将一个数组中的元素逆序后输出。

3. 统计输入的各个数据的个数

有[0, 20]范围的整数N个,统计每个数的个数和不同整数的个数。

五、课后练习

1. 从数组中查找某个元素

从数组中查找某个元素,如果找到,返回该元素在数组中的索引位置(数组下标),否则提示“无此元素”。

2. 求一个数组中元素的平均值和均方差

均方差一般指标准差。 标准差(Standard Deviation) ,数学术语,是方差(样本中各数据与样本平均数的差的平方和的平均数叫做样本方差)的算术平方根,用σ表示。标准差能反映一个数据集的离散程度。平均数相同的两组数据,标准差未必相同。
σ = Σ i = 1 n ( x i − μ ) 2 n \sigma = \sqrt{\frac{\Sigma^{n}_{i=1}(x_i - \mu)^2}{n}} σ=nΣi=1n(xiμ)2
简单来说,标准差是一组数据和平均值分散程度的一种度量。一个较大的标准差,代表大部分数值和其平均值之间差异较大;一个较小的标准差,代表这些数值较接近平均值。

#include<iostream>
#include<iomanip>
#include<cmath>
using namespace std;
int main() {const int size = 100;//如果想加大数组,可以改变它double a[size];int index = 0;double sum = 0;double average, s=0, mu;cout<<"请输入数据,输入任意字母确定结束输入:"<<endl;while(cin>>a[index++])	{if(index > size-1)	break;}cout<<"输入数据为:"<<endl;for(int i=0; i<index-1; i++)cout << setw(8) << a[i];cout<<endl;for(int i=0; i<index-1; i++)sum += a[i];average = sum/(index-1); //求平均值cout << "Average: " << average << endl;for(int i=0; i<index-1; i++)s += (a[i]-average)*(a[i]-average);mu = sqrt(s/(index-1)); //求均方差cout<<"均方差为:" << mu << endl;return 0;
}

3. 编程统计某班某次考试的平均成绩和均方差

本题同上一题。

4. 求一个列表的中位数

对任意给定的长度为n的已排好序的整型数组,求该数组元素的中位数。
中位数(Median)又称中值,统计学中的专有名词,是按大小顺序排列的一组数据中居于中间位置的数。如果被考察的这组数据的个数为偶数个,通常取最中间的两个数值的平均数作为中位数。
【算法分析】先对列表排序,如果列表的个数是奇数,则中间 那个数就是这组数据的中位数;如果列表的个数是偶数,则中间 那两个数的算术平均值就是这组数据的中位数。

#include <iostream>
//#include <cstdlib>
#include <algorithm>using namespace std;//求一个列表的中位数 
int main() {//int arr[] = {66, 93, 36, 48, 96, 83, 45, 60, 90, 53};int arr[] = {136, 140, 129, 180, 124, 154, 146, 145, 158, 175, 165, 148};int len = sizeof(arr) / sizeof(arr[0]);cout<<"length: "<<len<<endl;for(int i=0; i<len; i++)cout<<arr[i]<<" ";cout<<endl;sort(arr, arr+len);	//第一个参数是要排序的数组的起始地址, 第二个参数是结束的地址(最后一个数据的后一个数据的地址)for(int i=0; i<len; i++)cout<<arr[i]<<" ";int m = len/2;float median;if(len % 2 == 0) {median = (arr[m-1] +arr[m])/2.0;} else {median = arr[m];}cout<<"\nThe median number is: "<<median<<endl;
}

5. 使用数组输出Fibonacci数列的前40项

#include <iostream>
#include <iomanip>
using namespace std;
//输出斐波那契数列前40项
int main() {int n=40;int f[n];//构造斐波那契数列 f[0] = 1;f[1] = 1;for(int i=2; i<n; i++){f[i] = f[i-1] + f[i-2];}//输出斐波那契数列 for(int i=0; i<n; i++) {cout << setw(12) << f[i];if ((i+1) % 5 == 0) {	//每行输出10项cout << endl;}}return 0; 
}

运行程序,输出如下。

           1           1           2           3           58          13          21          34          5589         144         233         377         610987        1597        2584        4181        676510946       17711       28657       46368       75025121393      196418      317811      514229      8320401346269     2178309     3524578     5702887     922746514930352    24157817    39088169    63245986   102334155

6. 二分查找——在一个有序列表中查找某个元素

代码如下(示例):

#include <iostream>
using namespace std;// Classic binary search algorithm
// value: the value being searched
int binarySearch(int arr[], int size, int value) {	int left = 0, right = size - 1;while (left <= right) {int mid = left + (right - left) / 2;if (arr[mid] > value)	//value in the left part of the arrayright = mid - 1;else if (arr[mid] < value)	//value in the right part of the arrayleft = mid + 1;else if (arr[mid] == value)return mid;}return -1;	// the element is not exist in the array
}int main(void) {int arr[] = {2, 3, 4, 10, 10, 10, 10, 10, 40};int n = sizeof(arr) / sizeof(arr[0]);int x = 10;int result = binarySearch(arr, n, x);if (result == -1) {printf("Element is not present in the array\n");} else {printf("Element is present at index %d\n", result);}return 0;
}

运行程序,输出如下。

Element is present at index 4

其实被查找元素10在列表中的第一次出现的索引位置为3,第二次出现的索引位置才是4。因为被查找列表元素是有序的,如果被查找元素在列表中如果有重复出现的话,那么这些相同的元素肯定是相邻的,这就出现了查找某个元素在列表中第一次出现或者最后一次出现的位置的情况。所以,二分查找可以进一步进行有针对性的调整。具体参见下面的代码。

#include <iostream>
using namespace std;// Classic binary search algorithm
// value: the value being searched
int binarySearch(int arr[], int size, int value) {	int left = 0, right = size - 1;while (left <= right) {int mid = left + (right - left) / 2;if (arr[mid] > value)	//value in the left part of the arrayright = mid - 1;else if (arr[mid] < value)	//value in the right part of the arrayleft = mid + 1;else if (arr[mid] == value)return mid;}return -1;	// the element is not exist in the array
}//寻找arr中值为value的左侧边界,也就是arr中有重复的值,寻找第一个等于value的位置
//Find the left boundary of value in arr, which means there are 
//duplicate values in arr, and find the first position equal to the search value
int binarySearchLeft(int arr[], int size, int value) {		int left = 0, right = size - 1;while (left <= right) {int mid = left + (right - left) / 2;if (arr[mid] > value)	//value in the left part of the arrayright = mid - 1;else if (arr[mid] < value)	//value in the right part of the arrayleft = mid + 1;else if (arr[mid] == value) {if (mid == 0 || arr[mid - 1] != value)return mid;elseright = mid - 1; //right boundary contracts to the left (right往左侧收缩)}}return -1;	// the element is not exist in the array
}//寻找arr中值为value的右侧边界,也就是arr中有重复的值,寻找最后一个等于value的位置
//Find the right boundary of value in arr, which means there are 
//duplicate values in arr, and find the last position equal to the search value
int binarySearchRight(int arr[], int size, int value) {int left = 0, right = size - 1;while (left <= right) {int mid = left + (right - left) / 2;if (arr[mid] > value)right = mid - 1;else if (arr[mid] < value)left = mid + 1;else if (arr[mid] == value) {if (mid == size - 1 || arr[mid + 1] != value)return mid;elseleft = mid + 1;	//left boundary contracts to the right (left往右侧收缩)}}return -1;
}int main(void) {int arr[] = {2, 3, 4, 10, 10, 10, 10, 10, 40};int n = sizeof(arr) / sizeof(arr[0]);int x = 10;cout << binarySearchLeft(arr, n, x) << endl; cout << binarySearchRight(arr, n, x) << endl;return 0;
}

运行程序,输出如下

3
7

7. 改进的二分查找——在一个有序列表中查找某个元素

使用二分查找法查找一个列表中的元素是否存在于另一个列表中。
输入:
包括3行。
第一行2个数:n和q,第一个数n为被查找的列表的长度,第二个数q为查找元素的个数,
第二行是被查找的列表元素,
第三行是要查找的列表元素。
输出:
q行。每一行为被查找元素在被查找的列表中的位置。

#include <iostream>
using namespace std;// Classic binary search algorithm
// value: the value being searched
int binarySearch(int arr[], int size, int value) {	int left = 0, right = size - 1;while (left <= right) {int mid = left + (right - left) / 2;if (arr[mid] > value)	//value in the left part of the arrayright = mid - 1;else if (arr[mid] < value)	//value in the right part of the arrayleft = mid + 1;else if (arr[mid] == value)return mid;}return -1;	// the element is not exist in the array
}//寻找arr中值为value的左侧边界,也就是arr中有重复的值,寻找第一个等于value的位置
//Find the left boundary of value in arr, which means there are 
//duplicate values in arr, and find the first position equal to the search value
int binarySearchLeft(int arr[], int size, int value) {		int left = 0, right = size - 1;while (left <= right) {int mid = left + (right - left) / 2;if (arr[mid] > value)	//value in the left part of the arrayright = mid - 1;else if (arr[mid] < value)	//value in the right part of the arrayleft = mid + 1;else if (arr[mid] == value) {if (mid == 0 || arr[mid - 1] != value)return mid;elseright = mid - 1; //right boundary contracts to the left (right往左侧收缩)}}return -1;	// the element is not exist in the array
}//寻找arr中值为value的右侧边界,也就是arr中有重复的值,寻找最后一个等于value的位置
//Find the right boundary of value in arr, which means there are 
//duplicate values in arr, and find the last position equal to the search value
int binarySearchRight(int arr[], int size, int value) {int left = 0, right = size - 1;while (left <= right) {int mid = left + (right - left) / 2;if (arr[mid] > value)right = mid - 1;else if (arr[mid] < value)left = mid + 1;else if (arr[mid] == value) {if (mid == size - 1 || arr[mid + 1] != value)return mid;elseleft = mid + 1;	//left boundary contracts to the right (left往右侧收缩)}}return -1;
}int main(void) {int n, q;cin >> n >> q;int arr[n];		//The array being searchedint arr2[q];	//Elements to search forfor(int i=0; i<n; i++) cin >> arr[i];for(int i=0; i<q; i++) cin >> arr2[i];int count = sizeof(arr) / sizeof(arr[0]);for(int i=0; i<q; i++) {cout << binarySearchLeft(arr, count, arr2[i]) << ' ' << binarySearchRight(arr, count, arr2[i]) << endl;}return 0;
}

程序运行的一次输入输出如下。

7 5
1 2 3 4 5 6 7
2 7 4 3 9
1 1
6 6
3 3
2 2
-1 -1

总结

C++数组中的数据,在内存中是连续存放的,每个元素占据相同大小的空间,就像排好队一样,理解这点非常重要。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/589361.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python 1200例——【15】杨辉三角

杨辉三角(Pascal’s Triangle)是一个在数学上非常有名的三角阵列,每个数是它上面两数之和。代码如下: # 获取用户输入的杨辉三角的行数 n = int(input("输入需要打印的杨辉三角行数 :")) # 确保输入的是正整数 assert n > 0, "请输入正整数!"# 初…

x-cmd pkg | openssl - 密码学开源工具集

目录 简介首次用户技术特点竞品分析进一步阅读 简介 OpenSSL 是一个开源的密码库和 SSL/TLS 协议实现&#xff0c;它提供了一组密码学工具和加密功能&#xff0c;用于保护数据通信的安全性。项目发展历史可以追溯到 1998 年&#xff0c;源自 Eric A. Young 和 Tim J. Hudson 开…

Docker的一个简单例子(一)

文章目录 环境示例准备构建启动/停止容器更新应用分享应用 参考 环境 RHEL 9.3Docker Community 24.0.7 示例 准备 从github克隆 getting-started-app 项目&#xff1a; git clone https://github.com/docker/getting-started-app.git查看项目&#xff1a; ➜ getting-s…

I.MX8QM flexcan移植

Android SDK&#xff1a;imx8_13.0.0_1.2.0(android 13 u-boot 2022.04 kernel 5.15.74) 一、kernel 内核配置&#xff1a; # 相应的defconfig中添加使能下面两个宏。 # 官方默认的配置可能是以模块的方式编译&#xff0c;这里直接将can驱动编译到内核中 CONFIG_CANy CONFIG…

C++面试宝典第12题:数组元素相除

题目 从控制台输入若干个整数作为数组,将数组中每一个元素除以第一个元素的结果,作为新的数组元素值。比如:可以先输入3,作为数组元素的个数;然后输入3个整数,作为数组元素的值。 解析 这道题本身并不复杂,但里面隐藏了不少“坑点”和“雷区”,主要考察应聘者全面思考问…

vue项目中实现预览pdf

vue项目中实现预览pdf 1. iframe <iframe :src"pdfSrc"></iframe> ​data() {return {pdfSrc: http://192.168.0.254:19000/trend/2023/12/27/5635529375174c7798b5fabc22cbec45.pdf,}},​iframe {width: 100%;height: calc(100vh - 132px - 2 * 20px -…

MATLAB --- interp1( )函数的用法

interp1() 是 MATLAB 中用于一维插值的函数&#xff0c; 它可以根据给定的数据点进行插值&#xff0c;从而在给定的插值点处估计函数的值 下面是 interp1() 函数的用法&#xff1a; Vq interp1(X, V, Xq) Vq interp1(X, V, Xq, method) Vq interp1(X, V, Xq, method, extr…

数据结构:堆的三部曲 (一)堆的实现

堆的实现 1.堆的结构1.1堆的定义理解 2.堆的实现&#xff08;以小根堆为例&#xff09;2.1 堆结构体的定义2.2 堆的插入交换函数向上调整算法插入函数的代码 2.3 堆的删除向下调整算法&#xff1a;删除函数的代码&#xff1a; 2.4其他操作 3.测试以及完整源代码实现3.1测试代码…

typore自定义删除线快捷键

打开高级设置 设置快捷键 重新打开typore

Java实现短信发送业务

1、业务需求 发送短信功能是一个很普遍的需求&#xff0c;比如验证码&#xff0c;快递单号&#xff0c;通知信息一类。 而在Java中实现短信功能相对简单&#xff0c;只需要调用短信服务商提供的API。接下来以阿里云为例&#xff0c;介绍如何实现短信发送功能&#xff0c;其他短…

x-cmd pkg | bat - cat 命令的现代化替代品

目录 简介首次用户功能特点进一步阅读 简介 bat 是 cat 命令的替代品&#xff0c;对 cat 命令进行功能扩展&#xff0c;如语法高亮、自动分页等&#xff0c;为用户提供更友好的显示和定制选项。对于需要在终端频繁查看文本内容的用户&#xff0c;推荐用 bat。 首次用户 使用 …

xinference

xinference Xorbits Inference&#xff08;xinference&#xff09;是一个性能强大且功能全面的分布式推理框架。可用于大语言模型&#xff08;LLM&#xff09;&#xff0c;语音识别模型&#xff0c;多模态模型等各种模型的推理。通过 Xorbits Inference&#xff0c;你可以轻松地…

计算机基础面试题 |01.精选计算机基础面试题

&#x1f90d; 前端开发工程师&#xff08;主业&#xff09;、技术博主&#xff08;副业&#xff09;、已过CET6 &#x1f368; 阿珊和她的猫_CSDN个人主页 &#x1f560; 牛客高级专题作者、在牛客打造高质量专栏《前端面试必备》 &#x1f35a; 蓝桥云课签约作者、已在蓝桥云…

linux 休眠唤醒中设备、总线、用户进程、内核线程调试分析流程

一、suspending consoles打印 代码位置&#xff1a;Kernel/power/suspend.c 函数调用流程&#xff1a;devices_and_enter(suspend_state_t state) --> suspend_console(); void suspend_console(void) { if (!console_suspend_enabled) 注释这一行&#xff0c;可以看到…

企业级依赖管理: 深入解读 Maven BOM

一、背景 当开发者在一个大型项目中使用 Maven 进行依赖管理时&#xff0c;项目往往会包含多个模块或子项目&#xff0c;并且这些模块会共享相同的依赖项。但是&#xff0c;不同模块可能会独立地指定各自的依赖版本&#xff0c;这可能导致以下问题&#xff1a; 依赖版本不一致…

头歌:实验十六 matplotlib数据可视化

第1关 各省gdp的和生成条状图 import pandas import matplotlib matplotlib.use(Agg) import matplotlib.pyplot as plt matplotlib.rcParams[font.family]SimHei matplotlib.rcParams[font.sans-serif] [SimHei] datapandas.read_excel("test/各省GDP.xlsx",dtype…

在多Module项目中,给IDEA底部选项卡区域添加Services选项卡

一般一个spring cloud项目中大大小小存在几个十几个module编写具体的微服务项目。此时&#xff0c;如果要调试测需要依次启动各个项目比较麻烦。 idea其实提供了各module的启动管理工具了&#xff0c;可以快速启动和关闭各个服务&#xff0c;也能批量操作&#xff0c;比如一次…

25. 数组作为函数参数

写代码时&#xff0c;我们会将数组作为参数传给函数 冒泡排序&#xff1a; 两两相邻的元素进行比较&#xff0c;可能的话进行交换 一趟冒泡排序会将一个元素放在其最后应该在的位置 10个数字只需9趟&#xff0c;第一趟10个数字待排序&#xff0c;9对比较&#xff1b;第二趟…

计算机科学速成课【学习笔记】(1)——计算机早期历史

本集课程B站链接&#xff1a; 【计算机科学速成课】[40集全/精校] - Crash Course Computer Science_哔哩哔哩_bilibili【计算机科学速成课】[40集全/精校] - Crash Course Computer Science共计40条视频&#xff0c;包括&#xff1a;1. 计算机早期历史-Early Computing、2. 电…

【2024最新版】neo4j安装配置

neo4j安装 写在最前面下载配置环境&#xff08;还是不行&#xff1f;&#xff09;启动neo4jpython中调用 写在最前面 之前我安装过&#xff0c;还写了一篇笔记 结果意外发现没有了&#xff0c;而且和之前安装的步骤不一样了&#xff0c;因此再次记录安装过程 下载 https://ne…