【Essential C++课后练习】纯代码(更新中)

文章目录

  • 第一章 C++编程基础
    • 1.4
    • 1.5
    • 1.6
    • 1.7
    • 1.8
  • 第二章 面向过程的编程风格
    • 2.1
    • 2.2
    • 2.3
    • 2.4
    • 2.5
    • 2.6

第一章 C++编程基础

1.4

/*********************************************************************说明:试着扩充这个程序的内容:(1)要求用户同时输入名字(first name)和姓氏(last name),
(2)修改输出结果,同时打印出姓氏和名字。
*********************************************************************/
#include <iostream>
#include <string>
using namespace std;int main() {string user_name;cout << "输入名字:\n";cin >> user_name;cout << "\n你好," << user_name;return 0;
}

1.5

/*********************************************************************说明:编写一个程序,能够询问用户的姓名,并读取用户所输入的内容。请确保用户输入的名称长度大
于两个字符。如果用户的确输入了有效名称,就响应一些信息。请以两种方式实现:第一种使用
C-style字符串,第二种使用string对象。
*********************************************************************/
#include <iostream>
#include <string>
#include <cstring>
using namespace std;//使用string对象
int main() {string usr_name;cout << "Please enter your name:" << endl;cin >> usr_name;switch (usr_name.size()) {case 0:cout << "Fail,No Name.";break;case 1:cout << "Fail,Onlu A 1-character name.";break;default :cout << "Hello," << usr_name << endl;}return 0;
}

1.6

/*********************************************************************说明:编写一个程序,从标准输入设备读取一串整数,并将读入的整数依次放到array及
vector,然后遍历这两种容器,求取数值总和。将总和及平均值输出至标准输出设备
*********************************************************************/
#include <iostream>
#include <vector>
using namespace std;// 使用array实现
//int main() {
//	const int array_size = 128;
//	int ia[array_size];
//
//	int ival, icnt = 0;  // ival用于暂存输入,icnt表示输入数据量
//	int sum = 0;
//	cout << "Please Enter Some Numbers:" << endl;
//
//	while (cin >> ival && icnt < array_size) {
//		ia[icnt++] = ival;
//	}
//
//	for (int i = 0; i < icnt; i++) {
//		sum += ia[i];
//	}
//	int average = sum / icnt;
//	cout << "Sum of " << icnt
//	     << " elements: " << sum
//	     << ". Average: " << average << endl;
//	return 0;
//}//使用vector实现
int main() {const int array_size = 128;vector<int>ia; //无需在初始化的时候就确实大小int ival = 0;  // ival用于暂存输入int sum = 0;cout << "Please Enter Some Numbers:" << endl;while (cin >> ival && ia.size() < array_size) {ia.push_back(ival);}for (int i = 0; i < ia.size(); i++) {sum += ia[i];}int average = sum / ia.size();cout << "Sum of " << ia.size()<< " elements: " << sum<< ". Average: " << average << endl;return 0;
}

1.7

/*********************************************************************说明:使用你最趁手的编辑工具,输入两行(或更多)文字并存盘。然后编写一个程序,打开该文本文
件,将其中每个字都读取到一个vector<string>对象中。遍历该vector,将内容显示到cout。
然后利用泛型算法sort(),对所有文字排序:
#include <algorithm>
sort( container.beginer(), container.end() );
再将排序后的结果输出到另一个文件。*********************************************************************/
#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;int main() {vector<string>istr;ifstream infile("ex1.7Read.txt");if (!infile) {cerr << "Fail infile!\n";} else {string word;while (infile >> word) {istr.push_back(word);}}// 排序sort(istr.begin(), istr.end());ofstream outfile("ex1.7Write.txt", ios_base::app);if (!outfile)cerr << "Fail outfile!\n";elsefor (int i = 0; i < istr.size(); i++) {outfile << istr[i] << " ";}outfile << endl;return 0;
}

1.8

/*********************************************************************说明:switch语句让我们得以根据用户答错的次数提供不同的安慰语句。请以array储存四种
不同的字符串信息,并以用户答错次数作为array的索引值,以此方式来显示安慰语句。
*********************************************************************/
#include <iostream>
using namespace std;const char *msg_to_usr( int num_tries ) {const int rsp_cnt = 5;static const char *usr_msgs[ rsp_cnt ] = {"Go on, make a guess. ","Oops! Nice guess but not quite it.","Hmm, Sorry. Wrong a second time.","Ah, this is harder than it looks, no?","It must be getting pretty frustrating by now!"};if ( num_tries < 0 ) {num_tries = 0;} else if ( num_tries >= rsp_cnt ) {num_tries = rsp_cnt - 1;}return usr_msgs[ num_tries ];
}int main() {cout << msg_to_usr(3) << endl;return 0;
}

第二章 面向过程的编程风格

2.1

/*********************************************************************说明: 先前的main()只让用户输入一个位置值,然后便结束程序。如果用户想取得两个甚至更多元素值,
他必须执行这个程序两次或多次。请改写main(),使它允许用户不断输入位置值,直到用户希望
停止为止。
*********************************************************************/
#include <iostream>
using namespace std;bool fibon_elem(int, int &);int main() {int pos, elem;char ch;bool more = true;while (more) {cout  << "请输入一个位置:" ;cin >> pos;if (fibon_elem(pos, elem)) {cout << "此位置:" << pos<< "的值是:" << elem << endl;} else {cout << "error";}cout << "是否还要继续(Y/N)?" << endl;cin >> ch;if (ch != 'y' && ch != 'Y') {more = false;}}return 0;
}bool fibon_elem(int pos, int &elem) {// 检查位置值是否合理if (pos <= 0 || pos > 1024) {elem = 0;return false;}// 位置值为1和2时,elem的值为1int val = 1;int n_1 = 1, n_2 = 1;switch (pos) {default:case 2:cout << "1 ";case 1:cout << "1 ";}for (int i = 3; i <= pos; i++) {val = n_2 + n_1;n_2 = n_1;n_1 = val;cout << val << (!(i % 10) ? "\n\t" : " ");}elem = val;return true;
}

2.2

/*********************************************************************说明:Pentagonal数列的求值公式是 Pn=ni*(3r-1) /2,借此产生1,5,12,22,35等元素值。试定义一个函数,利用上述公式,将产生的元素置人用户传入的 vector 之中,元素数目由用户指定。请检查元素数目的有效性(译注:太大则可能引发overflow问题).接下来撰写第二个函数,能够将所接获的 vector 的所有元素一-一印出。此函数的第二参数接受一个字符串,表示储存于vector 内的数列的类型。最后再写一个main( ),测试上述两个函数。
*********************************************************************/
#include <iostream>
#include <vector>
#include <fstream>using namespace std;bool calc_elems(vector<int> &vec, int pos);
void display_elems(vector<int> vec, ostream &os = cout);int main() {vector<int> pent;// 检查上面声明的两个函数if ( calc_elems( pent, 0 ))display_elems( pent );if ( calc_elems( pent, 8 ))display_elems( pent );ofstream ofil("ex2.2.txt");if ( calc_elems( pent, 14 ))display_elems( pent, ofil);if ( calc_elems( pent, 138 ))display_elems( pent );return 0;
}bool calc_elems(vector<int> &vec, int pos) {if (pos <= 0 || pos > 64) {cerr << "Sorry. Invaild position:" << pos << endl;return false;}for (int ix = vec.size() + 1; ix <= pos; ++ix) {vec.push_back((ix * (3 * ix - 1)) / 2);};return true;
};void display_elems(vector<int> vec, ostream &os) {os << "\nPentagonal Numeric Series\n\t";for (int ix = 0; ix < vec.size(); ++ix)os << vec[ix] << ' ';os << endl;
};

2.3

/*********************************************************************说明:将练习2.2的Pentagonal数列求值函数拆分为两个函数,其中之一为inline,用来检验元素个数
是否合理。如果的确合理,而且尚未被计算,便执行第二个函数,执行实际的求值工作。
*********************************************************************/
#include <iostream>
#include <vector>
#include <fstream>using namespace std;inline bool calc_elems(vector<int> &vec, int pos);
extern void really_calc_elems(vector<int> &vec, int pos);
void display_elems(vector<int> vec, ostream &os = cout);int main() {vector<int> pent;// 检查上面声明的两个函数if ( calc_elems( pent, 0 ))display_elems( pent );if ( calc_elems( pent, 8 ))display_elems( pent );ofstream ofil("ex2.3.txt");if ( calc_elems( pent, 14 ))display_elems( pent, ofil);if ( calc_elems( pent, 138 ))display_elems( pent );return 0;
}bool calc_elems(vector<int> &vec, int pos) {if (pos <= 0 || pos > 64) {cerr << "Sorry. Invaild position:" << pos << endl;return false;}if ( vec.size() < pos) {really_calc_elems( vec, pos);}return true;
};void really_calc_elems(vector<int> &vec, int pos) {for (int ix = vec.size() + 1; ix <= pos; ++ix) {vec.push_back((ix * (3 * ix - 1)) / 2);};
}void display_elems(vector<int> vec, ostream &os) {os << "\nPentagonal Numeric Series\n\t";for (int ix = 0; ix < vec.size(); ++ix)os << vec[ix] << ' ';os << endl;
};

2.4

/*********************************************************************说明:写一个函数,以局部静态(local static)的vector存储 Pentagonal数列元素。此函数返回一个const 指针,指向该vector。如果 vector 的容量小于指定的元素数目,就扩充 vector的容量。接下来再实现第二个函数,接受一个位置值并返回该位置上的元素。最后,撰写main ()测试这些函数。*********************************************************************/
#include <iostream>
#include <vector>
#include <fstream>
using namespace std;inline bool check_validity(int pos);
const vector<int> *initelems(int pos);
void display_elems(vector<int> vec, ostream &os = cout);
bool get_elems(int pos, int &elem);int main() {int elem;// 检查上面声明的两个函数if ( get_elems( 0, elem ))cout << "element 1 is " << elem << '\n';for (int i = 1; i <= 10; ++i ) {if ( get_elems( i, elem ))cout << "element " << i << "\tis " << elem << '\n';}return 0;
}bool check_validity(int pos) {return (pos <= 0 || pos > 64) ? false : true;
}const vector<int> *initelems(int pos) {static vector<int> elems;if (check_validity(pos) || pos > elems.size()) {for (int ix = elems.size() + 1; ix <= pos; ++ix) {elems.push_back((ix * (3 * ix - 1)) / 2);};}return &elems;
}bool get_elems(int pos, int &elem) {if ( !check_validity( pos )) {cout << "Sorry. Invalid position: " << pos << endl;elem = 0;return false;};const vector<int> *elems = initelems(pos);elem = (*elems)[pos - 1];return true;
}void display_elems(vector<int> vec, ostream &os) {os << "\nPentagonal Numeric Series\n\t";for (int ix = 0; ix < vec.size(); ++ix)os << vec[ix] << ' ';os << endl;
};

2.5

/*********************************************************************说明:实现一个重载的max (〉函数,让它接受以下参数:(a)两个整数;(b)两个浮点数;(c)两个字符串:(d)一个整数vector;(e)一个浮点数vector:(f)一个字符串 vector;(g)一个整数数组,以及一个表示数组大小的整数值:(h)一个浮点数数组,以及一个表示数组大小的整数值:(i)-个字符串数组,以及一个表示数组大小的整数值.最后,撰写main()测试这些函数。
*********************************************************************/
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;inline int max (int a, int b);
inline float max (float a, float b);
inline string max (const string &a, const string &b);
inline int max (const vector<int> &vec);
inline float max ( const vector<float> &vec );
inline string max ( const vector<string> &vec );
inline string max ( const string &a, const string &b );
inline int max ( const int *parray, int size );
inline float max( const float *parray, int size );
inline string max ( const string *parray, int size );int main() {string sarray[] = { "we", "were", "her", "pride", "of", "ten" };vector<string> svec( sarray, sarray + 6 );int iarray[] = { 12, 70, 2, 169, 1, 5, 29 };vector<int> ivec( iarray, iarray + 7 );float farray[] = { 2.5, 24.8, 18.7, 4.1, 23.9 };vector<float> fvec( farray, farray + 5 );int imax = max( max( ivec ), max( iarray, 7 ));float fmax = max( max( fvec ), max( farray, 5 ));string smax = max( max( svec ), max( sarray, 6 ));cout << "imax should be 169  -- found: " << imax << '\n'<< "fmax should be 24.8 -- found: " << fmax << '\n'<< "smax should be were -- found: " << smax << '\n';return 0;
}int max (int a, int b) {return (a > b) ? a : b;
}float max (float a, float b) {return (a > b) ? a : b;
}string max ( const string &a, const string &b ) {return a > b ? a : b;
}int max ( const vector<int> &vec ) {return *max_element( vec.begin(), vec.end() );
}float max ( const vector<float> &vec ) {return *max_element( vec.begin(), vec.end() );
}string max ( const vector<string> &vec ) {return *max_element( vec.begin(), vec.end() );
}int max ( const int *parray, int size ) {return *max_element( parray, parray + size );
}float max( const float *parray, int size ) {return *max_element( parray, parray + size );
}string max ( const string *parray, int size ) {return *max_element( parray, parray + size );
}

2.6

/*********************************************************************说明:以template 重新完成练习2.5,并对main(〉函数做适度的修改.
*********************************************************************/
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;template <typename Type>inline Type mymax(Type t1, Type t2) {return (t1 > t2) ? t1 : t2;
}template <typename elemType>inline elemType mymax(const vector<elemType> &vec) {return *max_element( vec.begin(), vec.end() );
}template <typename arrayType>inline arrayType mymax(const arrayType *parray, int size) {return *max_element( parray, parray + size );
}int main() {string sarray[] = { "we", "were", "her", "pride", "of", "ten" };vector<string> svec( sarray, sarray + 6 );int iarray[] = { 12, 70, 2, 169, 1, 5, 29 };vector<int> ivec( iarray, iarray + 7 );float farray[] = { 2.5, 24.8, 18.7, 4.1, 23.9 };vector<float> fvec( farray, farray + 5 );int imax = mymax( mymax( ivec ), mymax( iarray, 7 ));float fmax = mymax( mymax( fvec ), mymax( farray, 5 ));string smax = mymax( mymax( svec ), mymax( sarray, 6 ));cout << "imax should be 169  -- found: " << imax << '\n'<< "fmax should be 24.8 -- found: " << fmax << '\n'<< "smax should be were -- found: " << smax << '\n';return 0;
}

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

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

相关文章

jmeter性能测试常见的一些问题

一、request 请求超时设置 timeout 超时时间是可以手动设置的&#xff0c;新建一个 http 请求&#xff0c;在“高级”设置中找到“超时”设置&#xff0c;设置连接、响应时间为2000ms。 1. 请求连接超时&#xff0c;连不上服务器。 现象&#xff1a; Jmeter表现形式为&#xff…

Centos Linux带进度条复制(同步)文件和文件夹

centos linux 内建文件复制/备份命令 rsync 目的&#xff1a;我想从一个磁盘复制一堆文件到另一个磁盘&#xff0c;不希望改变文件的属性&#xff08;尤其是所有者、还有创建时间、修改时间&#xff09;&#xff0c;最好还得能给我显示进度条。文件太多了&#xff0c;好几百GB…

安防监控视频汇聚EasyCVR平台的FLV视频流在VLC中无法播放的原因排查

众所周知&#xff0c;TSINGSEE青犀视频汇聚平台EasyCVR可支持多协议方式接入&#xff0c;包括主流标准协议国标GB28181、RTSP/Onvif、RTMP等&#xff0c;以及厂家私有协议与SDK接入&#xff0c;包括海康Ehome、海大宇等设备的SDK等。在视频流的处理与分发上&#xff0c;视频监控…

Mac 安装不在 Apple 商店授权的应用程序

文章目录 一、场景介绍二、实操说明 一、场景介绍 在日常的工作生活中&#xff0c;发现一些好用的应用程序&#xff0c;但是出于某些原因&#xff0c;应用程序的开发者并没有将安装包上架到苹果商店。 那么这些优秀的应用程序下载安装以后就会出现如下弹框被拒之门外 二、实操…

背上花里胡哨的书包准备run之webpack篇(+一些常问的面试题)

webpack理解&#xff1f; Webpack 是一个现代的静态模块打包工具。它是一个基于配置的构建工具&#xff0c;用于将多个模块&#xff08;包括 JavaScript、样式表、图像等&#xff09;打包成一个或多个 bundle&#xff0c;并提供了一种优化资源加载和管理的方式。 主要概念和工…

【论文阅读】基于深度学习的时序预测——Informer

系列文章链接 论文一&#xff1a;2020 Informer&#xff1a;长序列数据预测 论文二&#xff1a;2021 Autoformer&#xff1a;长序列数据预测 文章地址&#xff1a;https://arxiv.org/abs/2012.07436 github地址&#xff1a;https://github.com/zhouhaoyi/Informer2020 参考解读…

MFC遍历目录包括子目录下所有文件、特定类型文件

文章目录 用法实现遍历所有文件遍历所有txt文件用法 vector<CString> v; //获取所有文件 GetFilePath(v,L"D:\\test\\"); //文件路径储存在容器里面,遍历容器 for(int i=0

比特鹏哥5-数组【自用笔记】

比特鹏哥5-数组【自用笔记】 1.数组的概念2.一维数组的创建和初始化创建的语句结构初始化的语句结构 3.一维数组的使用数组的下标&#xff1a;从0开始&#xff0c;n个数组&#xff0c;最后一个的下标是n-1 4.一维数组在内存中的存储5.sizeof计算数组元素个数可以计算元素个数并…

计算机工作原理:进程调度

在计算机中&#xff0c;什么是进程&#xff1f;一个跑起来的程序就是一个进程&#xff0c;没跑起来就只能算一个程序。 在windows的任务管理器中&#xff0c;可以很清楚的看到有哪一些进程。 进程&#xff08;progress&#xff09;也叫任务&#xff08;task&#xff09;。 每…

侯捷 C++面向对象编程笔记——10 继承与虚函数

10 继承与虚函数 10.1 Inheritance 继承 语法&#xff1a;:public base_class_name public 只是一种继承的方式&#xff0c;还有protect&#xff0c;private 子类会拥有自己的以及父类的数据 10.1.1 继承下的构造和析构 与复合下的构造和析构相似 构造是由内而外 Container …

UML-活动图

目录 一.活动图概述: 1.活动图的作用&#xff1a; 2.以下场合不使用活动图&#xff1a; 3.活动图的基本要素&#xff1a; 4.活动图的图符 4.1起始状态 4.2终止状态 4.3状态迁移 4.4决策点 4.5同步条:表示活动之间的不同 5.活动图: 二.泳道&#xff1a; 1.泳道图&a…

有人管一管小天才电话手表吗?

作者 | 张未 来源 | 洞见新研社 潮流果然是个圈&#xff0c;曾经风靡2008年的“摇一摇”重回我们的视野当中。 这个对于成年人有些过时的产物&#xff0c;以儿童手表为载体&#xff0c;正入侵着小学生的社交圈&#xff0c;成为儿童的“社交密码”。 “碰一碰”加好友&#x…

vue3+ts 动态导入多文件组件

1、在components文件夹中新建index.ts文件&#xff08;components文件夹下为创建的组件&#xff09; // index.ts const modules import.meta.globEager("./*.vue"); //参数为组件路径 let componentsOpts {}const getCaption (obj, str, z: boolean) > {let…

php获取随机不重复数字(封装函数直接拿来用)

在PHP中获取随机值这种操作非常常见&#xff0c;比如订单号&#xff0c;密码加密&#xff0c;以及验证码等&#xff0c;那么在本文介绍一种获取随机不重复数字的函数。 主要核心就是生成随机数函数&#xff1a;mt_rand() 由于这里获取的是不重复的随机数&#xff0c;所以需要…

亚马逊公告:订单存档政策调整,超过两年将于9月起存档

站斧浏览器获悉&#xff1a; 亚马逊新公告&#xff1a;2023年9月起&#xff0c;亚马逊美国站和欧洲站宣布将调整订单数据存档政策。这一政策的调整旨在保护客户的个人隐私和数据安全&#xff0c;从而提高客户的购物体验。据悉&#xff0c;所有历时超过两年以上的订单将按月进行…

【高频面试题】多线程篇

文章目录 一、线程的基础知识1.线程与进程的区别2.并行和并发有什么区别&#xff1f;3.创建线程的方式有哪些&#xff1f;3.1.Runnable 和 Callable 有什么区别&#xff1f;3.2.run()和 start()有什么区别&#xff1f; 4.线程包括哪些状态&#xff0c;状态之间是如何变化的4.1.…

如何将Linux上的cpolar内网穿透设置成 - > 开机自启动

如何将Linux上的cpolar内网穿透设置成 - > 开机自启动 文章目录 如何将Linux上的cpolar内网穿透设置成 - > 开机自启动前言一、进入命令行模式二、输入token码三、输入内网穿透命令 前言 我们将cpolar安装到了Ubuntu系统上&#xff0c;并通过web-UI界面对cpolar的功能有…

如何维护自己的电脑

目录 1、关于电脑选择的建议 1.1、价格预算 1.2、明确需求 1.3、电脑配置 1.4、分辨率 1.5、续航能力 1.6、品牌选择 1.7、用户评测 1.8、各个电商平台对比 1.9、最后决策 2、我的选择 3、电脑保养 3.1 外部清洁 3.2 安装软件 3.3 优化操作系统 3.4 维护硬件设…

web前端之CSS

文章目录 一、CSS简介1.1 CSS语法规则 二、CSS的引用方法2.1 定义行内样式表2.2定义内部样式表2.3链入外部样式表2.4导入外部样式表 三、CSS选择符3.1 基本选择符3.1.1 标签选择符3.1.2 class类选择符3.1.3 id选择符 3.2 复合选择符3.2.1 交集选择符&#xff08;合并选择器&…

Docker安装Hadoop分布式集群

一、准备环境 docker search hadoop docker pull sequenceiq/hadoop-docker docker images二、Hadoop集群搭建 1. 运行hadoop102容器 docker run --name hadoop102 -d -h hadoop102 -p 9870:9870 -p 19888:19888 -v /opt/data/hadoop:/opt/data/hadoop sequenceiq/hadoop-do…