本文地址:http://www.cnblogs.com/archimedes/p/cpp-primer-chapter4-ans.html,转载请注明源地址。

【习题 4.7】

编写必要的代码将一个数组赋给另一个数组,然后把这段代码改用 vector 实现。 考虑如何将一个 vector 赋给另一个 vector。

用数组实现:

#include <iostream>
using namespace std;
int main( )
{
const size_t size=;
int a1[size]={,,,,};
int a2[size];
for(size_t i=; i<size; ++i)
a2[i]=a1[i];
system("PAUSE");
return ;
}

用vector实现:

#include <iostream>
#include <vector>
using namespace std;
int main( )
{
int a[]={,,,,};
vector<int> vec1(a,a+);
vector<int> vec2;
for(vector<int>::iterator it=vec1.begin(); it!=vec1.end(); ++it)
vec2.push_back(*it);
system("PAUSE");
return ;
}

【习题 4.8】

编写程序判断两个数组是否相等,然后编写一段类似的程序比较两个 vector。

bool judge1(int *a, int *b, int n)
{
for(size_t i=; i<n; i++) {
if(a[i]!=b[i])
return false;
}
return true;
}

比较vector:

bool judge2(vector<int> a, vector<int> b)
{
for(vector<int>::size_type it=; it<a.size(); it++) {
if(a[it]!=b[it])
return false;
}
return true;
}

【习题 4.9】

编写程序定义一个有 10 个 int 型元素的数组,并以其在数组中的位置作为各元素的初值。

#include <iostream>
using namespace std;
int main( )
{
int a[];
for(size_t i=; i<; i++) {
a[i]=i;
cout<<a[i]<<" ";
}
cout<<endl;
system("PAUSE");
return ;
}

【习题 4.14】

编写代码修改指针的值;然后再编写代码修改指针所指对象的值。

#include <iostream>
#include <string>
#include <vector>
using namespace std;
int main( )
{
int *p;
int a=;
int b=;
p=&a;
cout<<p<<endl;
p=&b;
cout<<p<<endl;
*p=;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
system("PAUSE");
return ;
}

【习题 4.18】

编写程序,使用指针把一个 int 型数组的所有元素设置为 0。

#include <iostream>
using namespace std;
int main( )
{
int a[]={,,,,};
for(int*p=a; p<a+; p++)
*p=;
for(int *p=a; p<a+; p++)
cout<<*p<<endl;
system("PAUSE");
return ;
}

【习题 4.25】

编写程序比较两个 string 类型的字符串,然后编写另一个程序比较两个 C 风格字符串的值。

#include <iostream>
#include <string>
using namespace std;
int main( )
{
string s1,s2;
cout<<"输入两个字符串:\n";
cin>>s1>>s2;
if(s1>s2)
cout<<"\""<<s1<<"\""<<"is bigger than"<<"\""<<s2<<"\""<<endl;
else if(s1>s2)
cout<<"\""<<s2<<"\""<<"is bigger than"<<"\""<<s1<<"\""<<endl;
else
cout<<"thay are equal"<<endl;
system("PAUSE");
return ;
}

比较两个 C 风格字符串:

#include <iostream>
#include <string>
#include <vector>
using namespace std; int main( )
{
const int size=;
char *s1,*s2;
s1=new char[size];
s2=new char[size];
if(s1==NULL || s2==NULL) {
cout<<"No enough memory!"<<endl;
return -;
}
cout<<"Enter two strings:"<<endl;
cin>>s1>>s2;
int result;
result=strcmp(s1,s2);
if(result>)
cout<<"\""<<s1<<"\""<<"is bigger than"<<"\""<<s2<<"\""<<endl;
else if(result<)
cout<<"\""<<s2<<"\""<<"is bigger than"<<"\""<<s1<<"\""<<endl;
else
cout<<"thay are equal"<<endl;
delete []s1;
delete []s2;
system("PAUSE");
return ;
}

【习题 4.28】

编写程序由从标准输入设备读入的元素数据建立一个 int 型 vector 对象,然后动态创建一个与该 vector 对象大小一致的数组,把 vector 对象的所有元素复制给新数组。

#include <iostream>
#include <string>
#include <vector>
using namespace std; int main( )
{
vector<int> vec;
int n;
cout<<"请输入数字:"<<endl;
while(cin>>n)
vec.push_back(n);
int size=vec.size();
int *a=new int[size];
for(vector<int>::size_type i=; i<size; i++) {
a[i]=vec[i];
}
cout<<"符合要求的数组为:";
for(int i=; i<size; i++)
cout<<a[i]<<endl;
delete []a;
system("PAUSE");
return ;
}

【习题 4.30】

编写程序连接两个 C 风格字符串字面值,把结果存储在一个 C 风格字符串中。然后再编写程序连接两个 string 类型字符串,这两个 string 类型字符串与前面 的 C 风格字符串字面值具有相同的内容。

#include <iostream>
#include <cstring>
using namespace std;
int main( )
{
const char *s1="hello ";
const char *s2="world.";
size_t len=strlen(s1)+strlen(s2);
char *res=new char[len+];
strcpy(res,s1);
strcat(res,s2);
cout<<res<<endl;
delete []res;
system("PAUSE");
return ;
}

改进后的代码:

#include <iostream>
#include <string>
using namespace std;
int main( )
{
const string s1("hello ");
const string s2("world.");
string res;
res=s1;
res+=s2;
cout<<res<<endl;
system("PAUSE");
return ;
}

【习题 4.31】

编写程序从标准输入设备读入字符串,并把该串存放在字符数组中。描述你的程序如何处理可变长的输入。提供比你分配的数组长度长的字符串数据测试你的程序。

#include<iostream>
#include<string>
#include<cstring>
using namespace std;
int main( )
{
string instr;
const size_t size=;
char restr[size];
cout<<"请输入字符串(<="<<size<<"个字符):"<<endl;
cin>>instr;
size_t len=strlen(instr.c_str());
if(len>size) len=size;
strncpy(restr,instr.c_str(),len);
restr[len+]='\0';
return ;
}

【习题 4.32】

编写程序用 int 型数组初始化 vector 对象。

#include<iostream>
#include<vector>
using namespace std;
int main( )
{
const size_t arr_size=;
int int_arr[arr_size];
cout<<"请输入:"<<arr_size<<"个元素:"<<endl;
for(size_t i=; i!=arr_size; i++)
cin>>int_arr[i];
vector<int> ivec(int_arr, int_arr+arr_size);
system("PAUSE");
return ;
}

【习题 4.33】

编写程序把 int 型 vector 复制给 int 型数组。

#include<iostream>
#include<vector>
using namespace std;
int main( )
{
vector<int> ivec;
int n;
cout<<"请输入数字:"<<endl;
while(cin>>n)
ivec.push_back(n);
int *a=new int[ivec.size()];
size_t i=;
for(vector<int>::iterator it=ivec.begin(); it!=ivec.end(); ++it,++i)
a[i]=*it;
delete []a;
system("PAUSE");
return ;
}

【习题 4.34】

编写程序读入一组 string 类型的数据,并将它们存储在 vector 中。接着,把该 vector 对象复制给一个字符指针数组。为 vector 中的每个元素创建一个新的字符数组,并把该 vector 元素的数据复制到相应的字符数组中,最后把指向 该数组的指针插入字符指针数组。

#include<iostream>
#include<vector>
#include<string>
#include<cstring>
using namespace std;
int main( )
{
vector<string> svec;
string str;
cout<<"请输入字符串:"<<endl;
while(cin>>str)
svec.push_back(str);
char **arr = new char*[svec.size()];
size_t i=;
for(vector<string>::iterator it=svec.begin(); it!=svec.end(); it++) {
char *p=new char[(*it).size()+];
strcpy(p, (*it).c_str());
arr[i]=p;
}
for(i=; i!=svec.size(); i++)
delete []arr;
system("PAUSE");
return ;
}

C++primer习题--第4章的更多相关文章

  1. C++primer习题--第1章

    本文地址:http://www.cnblogs.com/archimedes/p/cpp-primer-chapter1-ans.html,转载请注明源地址. [习题 1.3] 编一个程序,在标准输出 ...

  2. C++primer习题--第3章

    本文地址:http://www.cnblogs.com/archimedes/p/cpp-primer-chapter3-ans.html,转载请注明源地址. [习题 2.11]编写程序,要求用户输入 ...

  3. 《C++Primer》第五版习题答案--第一章【学习笔记】

    C++Primer第五版习题解答---第一章 ps:答案是个人在学习过程中书写,可能存在错漏之处,仅作参考. 作者:cosefy Date: 2022/1/7 第一章:开始 练习1.3 #includ ...

  4. 《C++Primer》第五版习题答案--第二章【学习笔记】

    C++Primer第五版习题解答---第二章 ps:答案是个人在学习过程中书写,可能存在错漏之处,仅作参考. 作者:cosefy Date: 2020/1/9 第二章:变量和基本类型 练习2.1: 类 ...

  5. 《python核心编》程课后习题——第三章

    核心编程课后习题——第三章 3-1 由于Python是动态的,解释性的语言,对象的类型和内存都是运行时确定的,所以无需再使用之前对变量名和变量类型进行申明 3-2原因同上,Python的类型检查是在运 ...

  6. C Primer Plus_第6章_循环_编程练习

    1.题略 #include int main(void) { int i; char ch[26]; for (i = 97; i <= (97+25); i++) { ch[i-97] = i ...

  7. C Primer Plus_第5章_运算符、表达式和语句_编程练习

    Practice 1. 输入分钟输出对应的小时和分钟. #include #define MIN_PER_H 60 int main(void) { int mins, hours, minutes; ...

  8. C Primer Plus_第四章_字符串和格式化输入输出_编程练习

    Practice 1.输入名字和姓氏,以"名字,姓氏"的格式输出打印. #include int main(void) { char name[20]; char family[2 ...

  9. [C++ Primer Plus] 第10章、对象和类(二)课后习题

    1. bank.h #include <string> using namespace std; class BankAccount { private: std::string m_na ...

随机推荐

  1. es6的Set()构造函数

    关于Set()函数 Set是一个构造器,类似于数组,但是元素没有重复的 1.接收数组或者其他iterable接口的数据 用于初始化数据 let a=new Set([1,32,424,22,12,3, ...

  2. win2008 r2 服务器php+mysql+sqlserver2008运行环境配置(从安装、优化、安全等)

    这篇文章主要介绍了win2008 r2 服务器php+mysql+sqlserver2008运行环境配置(从安装.优化.安全等),需要的朋友可以参考下 win2008 r2 安装 http://www ...

  3. 一道js试题

    直接上试题 <script type="text/javascript"> var output = '123js'; var object = { output : ...

  4. 洛谷P3402 【模板】可持久化并查集 [主席树,并查集]

    题目传送门 可持久化并查集 n个集合 m个操作 操作: 1 a b 合并a,b所在集合 2 k 回到第k次操作之后的状态(查询算作操作) 3 a b 询问a,b是否属于同一集合,是则输出1否则输出0 ...

  5. python笔记六:进程与线程

    1.进程 1)调用unix/linux系统中的进程函数fork(),用法和linux相同,调用成功返回0,失败返回-1: import os print 'Process (%s) start...' ...

  6. 「COCI2016/2017 Contest #2」Bruza

    「COCI2016/2017 Contest #2」Bruza 解题思路 : 首先对于任意时刻 \(i\) ,硬币一定移动到了深度为 \(i\) 的节点,所以第 \(i\) 时刻 Danel 一定染掉 ...

  7. Codeforces 990G 点分治+暴力

    题意:给出一棵点带权的树,求i\(\in\)[1,200000]所有路径的上点权的gcd==i的个数. 考虑点分治,对于一棵以u为根的子树,如何统计经过u的路径的答案? 显然既然是经过点u的路径,那么 ...

  8. 【Trie图】BZOJ3940-[Usaco2015 Feb]Censoring

    [题目大意] 有一个匹配串和多个模式串,现在不断删去匹配串中的模式串,求出最后匹配串剩下的部分. [思路] 众所周知,KMP的题往往对应着一道AC自动机quq.本题同BZOJ3942(KMP),这里改 ...

  9. 如何解决The underlying provider failed on Open问题

    转自codeproject,找了半天解决办法,这个最靠谱. 我数据库用的EF做ORM,在vs里面测试的时候不会出现这个错误,用IIS就出错了.解决方法如下 Solution for "The ...

  10. noip200807传纸条

    试题描述: 小渊和小轩是好朋友也是同班同学,他们在一起总有谈不完的话题.一次素质拓展活动中,班上同学安排做成一个m行n列的矩阵,而小渊和小轩被安排在矩阵对角线的两端,因此,他们就无法直接交谈了.幸运的 ...