C++ Primer Plus第八章课后习题总结

server/2025/2/27 5:30:04/

1. 编写通常接受一个参数(字符串的地址),并打印该字符串的函数。然而,如果提供了第二个参数(int类型),且该参数不为0,则该函数打印字符串的次数将为该函数被调用的次数(注意,字符串的打印次数不等于第二个参数的值,而等于函数被调用的次数)。是的,这是一个非常可笑的函数,但它让您能够使用本章介绍的一些技术。在一个简单的程序中使用该函数,以演示该函数是如何工作的。

代码如下: 

#include <iostream> 
using namespace std;
void print(const char *, int k = 1);
int main(){print("I'm the best!");print("I'm the best!", 5);print("I'm the best!");print("I'm the best!");return 0;
}
void print(const char *str, int n){cout << str << endl;
}

输出如下:

2. CandyBar结构包含3个成员,第一个成员存储candy bar的品牌名称;第二个成员存储candy bar的重量(可能有小数);第三个成员存储candy bar的热量(整数)。请编写一个程序,它使用一个这样的函数,即将CandyBar的引用、char指针、double和int作为参数,并用最后3个值设置相应的结构成员。最后3个参数的默认值分别为“Millennium Munch”、2.85和350。另外,该程序还包含一个以CandyBar的引用为参数,并显示结构内容的函数。请尽可能使用const。 

代码如下:

#include <iostream>
#include <string>
using namespace std;struct CandyBar{char *brand;double weight;int heat;
};void getInfo(CandyBar &, char *br = "Millennium Munch", double w = 2.85, int h = 350);
void showInfo(const CandyBar &);int main(){CandyBar cb;getInfo(cb, "MJJ", 3.55, 120);showInfo(cb);return 0;
}
void getInfo(CandyBar &cb, char *br, double w, int h){cb.brand = br;cb.weight = w;cb.heat = h;
}
void showInfo(const CandyBar &cb){cout << "The brand is:" << cb.brand << endl;cout << "The weight is:" << cb.weight << endl;cout << "The heat is:" << cb.heat << endl;
}

输出如下:

 3. 编写一个函数,它接受一个指向string对象的引用作为参数,并将该string对象的内容转化成大写,为此可以使用表6.4描述的函数toupper()。然后编写一个程序,它通过使用一个循环让您能够用不同的输入来测试这个函数,该程序的运行如下:

Enter a string (q to quit):go away
GO AWAY
Enter a string (q to quit):good grief!
GOOD GRIEF!
Enter a string (q to quit):q
Bye.

代码如下: 

#include <iostream>
#include <string>
#include <cctype>using namespace std;void toupper(string &);
int main(){string s;cout << "Enter a string (q to quit):";while(getline(cin, s) && s != "q"){toupper(s);cout << s << endl;cout << "Enter a string (q to quit):";}cout << "Bye.";return 0;
}
void toupper(string &str){for(int i = 0; str[i] != '\0'; i++){if(islower(str[i])){str[i] -= 32;//str[i] = toupper(str[i]);}else{continue;}}
}

 输出如下:

 

4.下面是一个程序框架:

#include<iostream>
#include<cstring>
using namespace std;struct stringy{char * str;int ct;
};int main()
{stringy beany;char testing[] = "Reality isn't what it used to be.";set(beany, testing);show(beany);show(beany, 2);testing[0] = 'D';testing[1] = 'u';show(testing);show(testing, 3);show("Done!");return 0;
}

请提供其中描述的函数和原型,从而完成该程序。注意,应有两个show()函数,每个都使用默认参数。请尽可能使用const参数。set()使用new分配足够的空间来存储指定的字符串。这里使用的技术与设计和实现类时使用的相似。(可能还必须修改头文件的名称,删除using编译指令,这取决于所用的编译器)。

代码如下:

#include<iostream>
#include<string>
using namespace std;struct stringy{char * str;int ct;
};void set(string &, const char *);
void show(string , int n = 1);
void show(const char *, int n = 1);
int main()
{string beany;char testing[] = "Reality isn't what it used to be.";set(beany, testing);show(beany);show(beany, 2);testing[0] = 'D';testing[1] = 'u';show(testing);show(testing, 3);show("Done!");return 0;
}
void set(string &s, const char *c){s = c;
}
void show(string s, int n){for(int i = 0; i < n; i++){cout << s << endl;}
}
void show(const char *c, int n){while(*c != '\0'){cout << *c;c++;}cout << endl;
}

输出如下:

5.编写模板函数max5(),它将一个包含5个T类型元素的数组作为参数,并返回数组中最大的元素(由于长度固定,因此可以在循环中使用硬编码,而不必通过参数来传递)。在一个程序使用该函数,将T替换为一个包含5个int值的数组和一个包含5个double值的数组,以测试该函数。 

#include <iostream>template <class T>
T max(T[]);int main(){using namespace std;int arr1[5] = {1, 2, 3, 4, 5};double arr2[5] = {1.1, 2.2, 3.3, 4.4, 5.5};int max1 = max(arr1);double max2 = max(arr2);cout << "The max number in arr1 is:" << max1 << endl;cout << "The max number in arr2 is:" << max2 << endl;return 0;
}template <class T>
T max(T arr[]){T max = arr[0];for(int i = 1; i < 5; i++){if(max < arr[i]){max = arr[i];} }return max;
}

6.编写模板函数maxn(),他将由一个T类型元素组成的数组和一个表示数组元素数目的整数作为参数,并返回数组中最大的元素。在程序对它进行测试,该程序使用一个包含6个int元素的数组和一个包含4个都不了元素的数组来调用该函数。程序还包含一个具体化,他将char指针数组和数组中的指针数量作为参数,并返回最长的字符串的地址。如果有多个这样的字符串,则返回其中第一个字符串的地址。使用由5个字符串指针组成的数组来测试该具体化。

代码如下:

#include <iostream>
#include <cstring>template <typename T>
T maxn(T* arr, int n){T max = arr[0];for(int i = 1; i < n; i++){if(max < arr[i]){max = arr[i];} }return max;
}
template <>
const char* maxn(const char* arr[5], int n){int max = strlen(arr[0]);int index = 0;for(int i = 1; i < n; i++){if(max < strlen(arr[i])){max = strlen(arr[i]);index = i;} }return arr[index];
}int main(){using namespace std;int arr1[6] = {1, 2, 3, 4, 5, 6};double arr2[4] = {1.1, 1.2, 2.3, 4.5};const char *arr3[5] = {"abc", "aabbcc", "adsafdfgd", "dsggr", "a"};int max1 = maxn(arr1, 6);double max2 = maxn(arr2, 4);const char* max3 = maxn(arr3, 5);cout << "The max in arr1:" << max1 << endl;cout << "The max in arr2:" << max2 << endl;cout << "The max in arr3:" << max3 << endl;return 0;
}

输出如下:

7.修改程序清单8.14,使其使用两个名为SumArray()的模板函数来返回数组元素的总和,而不是显示数组的内容。程序应显示thing的总和以及所有debt的总和。

程序清单8.14如下:

/******************程序清单8.14******************/
// tempover.cpp --- template overloading
#include <iostream>template <typename T>            // template A
void ShowArray(T arr[], int n);template <typename T>            // template B
void ShowArray(T * arr[], int n);struct debts
{char name[50];double amount;
};int main()
{using namespace std;int things[6] = {13, 31, 103, 301, 310, 130};struct debts mr_E[3] ={{"Ima Wolfe", 2400.0},{"Ura Foxe", 1300.0},{"Iby Stout", 1800.0}};double * pd[3]; // set pointers to the amount members of the structures in mr_Efor (int i = 0; i < 3; i++)pd[i] = &mr_E[i].amount;cout << "Listing Mr. E's counts of things:\n";
// things is an array of intShowArray(things, 6);  // uses template Acout << "Listing Mr. E's debts:\n";
// pd is an array of pointers to doubleShowArray(pd, 3);      // uses template B (more specialized)// cin.get();return 0;
}template <typename T>
void ShowArray(T arr[], int n)
{using namespace std;cout << "template A\n";for (int i = 0; i < n; i++)cout << arr[i] << ' ';cout << endl;
}template <typename T>
void ShowArray(T * arr[], int n)
{using namespace std;cout << "template B\n";for (int i = 0; i < n; i++)cout << *arr[i] << ' ';cout << endl; 
}

代码如下: 

#include <iostream>template <typename T>
T SumArray(T arr[], int n);template <typename T>
T SumArray(T* arr[], int n);struct debts
{char name[50];double amount;
};int main()
{using namespace std;int things[6] = {13, 31, 103, 301, 310, 130};struct debts mr_E[3] ={{"Ima Wolfe", 2400.0},{"Ura Foxe", 1300.0},{"Iby Stout", 1800.0}};double * pd[3]; for (int i = 0; i < 3; i++)pd[i] = &mr_E[i].amount;int sum1 = SumArray(things, 6);cout << "The sum of Mr. E's counts of things:" << sum1 << endl;double sum2 = SumArray(pd, 3);cout << "The sum of Mr. E's debts:" << sum2;return 0;
}template <typename T>      
T SumArray(T arr[], int n){T sum;for(int i = 0; i < n; i++){sum += arr[i];}return sum;
}
template <typename T>         
T SumArray(T* arr[], int n){T sum;for(int i = 0; i < n; i++){sum += *arr[i];}return sum;
}

输出如下:


http://www.ppmy.cn/server/170944.html

相关文章

Springboot使用Milvus的基本操作

Milvus 先得保证数据的正确安装并且正确运行 <dependency><groupId>com.google.code.gson</groupId><artifactId>gson</artifactId> </dependency> <dependency><groupId>io.milvus</groupId><artifactId>milvu…

Express + MongoDB 实现更新用户时用户名变化验证数据库是否存在,不变不验证

User.findById()&#xff1a;方法根据用户 ID 查找当前用户的信息&#xff0c;若用户不存在则返回 404 错误。 User.findOne()&#xff1a;方法检查新用户名是否已存在于数据库中。 User.findByIdAndUpdate()&#xff1a;方法更新用户信息&#xff0c;new: true 表示返回更新后…

安卓好软-----车机端 安卓tv端很好用的应用管家 adb 授权等等功能

应用管家是一款完全免费且实用的安卓平台系统管理工具&#xff0c;专为管理电视、车机的应用及文件而设计。其支持提取/卸载禁用自带应用、传送安装、清理及本地文件查找编辑压缩等等功能。 众所周知&#xff0c;当前市面上大多数厂家智能电视系统均基于谷歌原生安卓进行了“深…

Deep Searcher成为企业级RAG最新范式教程参考

教程参考 普通人想要分析一家公司,可以收集到的数据信息一般可以分为3类:公司财报、第三方机构的研报或者专业财经自媒体的分析博客、和公司以及行业相关的新闻。过去,要想在企业级场景用好这些数据,我们必须先对这些材料进行复杂的处理流程。 但是Deep Searcher,基于向…

服务器独立IP对于网站的作用

服务器作为重要的网络设备&#xff0c;可以帮助企业和用户建立网站&#xff0c;而独立UO地址作为服务器中的一个重要元素&#xff0c;可以在很大程度上决定着网站建设的性能和安全性&#xff0c;下面小编就来从几个方面阐述一下服务器独立IP对于网站的作用。 有着独立IP地址的服…

DeepSeek等LLM对网络安全行业的影响

大家好,我是AI拉呱,一个专注于人工智领域与网络安全方面的博主,现任资深算法研究员一职,兼职硕士研究生导师;热爱机器学习和深度学习算法应用,深耕大语言模型微调、量化、私域部署。曾获多次获得AI竞赛大奖,拥有多项发明专利和学术论文。对于AI算法有自己独特见解和经验…

禾迈电力电子嵌入式面经和参考答案

CMakeLists 怎么写? CMakeLists.txt 是 CMake 构建系统的配置文件,用于描述项目的构建规则和依赖关系。以下是一个简单的 CMakeLists.txt 示例及基本写法说明。 首先,指定 CMake 的最低版本要求,例如cmake_minimum_required(VERSION 3.10)。 然后,定义项目名称,如project…

ESP32 websocket-client

本文简介 ESP-IDF WebSocket-Client 实验平台 ①ESP-IDF 版本&#xff1a;release/v5.3.2 ③硬件平台&#xff1a;esp32-s3 版权声明 ①作者&#xff1a;coLin ②声明&#xff1a;问题总结&#xff0c;有误解&#xff0c;请联系纠正。 正文 1、基于 esp-idf 如何使用 …