当前位置:   article > 正文

c++ primer 第五版----第9章习题解答_假定iv是一个int的vector,下面的程序存在什么错误?你将如何修改?

假定iv是一个int的vector,下面的程序存在什么错误?你将如何修改?
9.1:对于下面的程序任务,vector、deque和list哪种容器最为适合?解释你的选择的理由。如果没有哪一种容器优于其他容器,也请解释理由。
(a) 读取固定数量的单词,将它们按字典序插入到容器中。我们将在下一章中看到,关联容器更适合这个问题。
(b) 读取未知数量的单词,总是将单词插入到末尾。删除操作在头部进行。
(c) 从一个文件读取未知数量的整数。将这些数排序,然后将它们打印到标准输出。
答:(a)应该使用list,要求插入是字典顺序,list可以任意插入。
(b)这里由于数量不确定,但不要求字典序,要求头部删除,毫无疑问应该用deque

(c)不需要删除则使用vector


9.2  定义一个list对象,其元素类型是int的deque。
list<deque<int>> lst;


9.3  构成迭代器范围的迭代器有何限制?

答:指向同一个迭代器;begin可以反复递增到达end。


9.4  编写函数,接受一对指向vector<int>的迭代器和一个int值。在两个迭代器指定的范围中查找给定的值,返回一个布尔值来指出是否找到。

答;

  1. #include<iostream>
  2. #include<vector>
  3. using namespace std;
  4. bool fun(vector<int>::iterator a, vector<int>::iterator b,int c)
  5. {
  6. while (a != b)
  7. {
  8. if (*a == c)
  9. {
  10. return true;
  11. }
  12. else
  13. {
  14. a++;
  15. }
  16. }
  17. return false;
  18. }
  19. int main()
  20. {
  21. vector<int> iter = { 1, 2, 3, 4, 5, 6 };
  22. int t = 5;
  23. cout << fun(iter.begin(),iter.end(), t) << endl;
  24. return 0;
  25. }


9.5  重写上一题的函数,返回一个迭代器指向找到的元素。注意,程序必须处理未找到给定值的情况。

  1. #include<iostream>
  2. #include<vector>
  3. using namespace std;
  4. vector<int>::iterator fun(vector<int>::iterator a, vector<int>::iterator b, int c)
  5. {
  6. while (a!=b)
  7. {
  8. if (*a== c)
  9. {
  10. return a;
  11. }
  12. else
  13. {
  14. a++;
  15. }
  16. }
  17. cout << "no" << endl;
  18. return b;
  19. }
  20. int main()
  21. {
  22. vector<int> iter={ 1, 2, 3, 4, 5, 6 };
  23. int t = 7;
  24. fun(iter.begin(),iter.end(), t);
  25. //cout << fun(iter, t) << endl;
  26. return 0;
  27. }


9.6  下面程序有何错误?你应该如何修改它?

list<int> lst1;
list<int>::iterator iter1 = lst1.begin(),iter2 = lst1.end();
while (iter1 < iter2) /* ... */

答: list容器的迭代器不支持该算术运算符“<”。


9.7  为了索引int的vector中的元素,应该使用什么类型?
vector<int>::size_type


9.8  为了读取string的list中的元素,应该使用什么类型?如果写入list,又应该使用什么类型?
list<string>::const_iterator
list<string>::iterato
r


9.9  begin和cbegin两个函数有什么不同?
begin返回的迭代器视对象是否是const而定,而cbegin返回的一定是const迭代器。


9.10  下面4个对象分别是什么类型?
vector<int> v1;
const vector<int> v2;
auto it1 = v1.begin(), it2 = v2.begin();
auto it3 = v1.cbegin(), it4 = v2.cbegin();
答: auto只能推断同一类型,因此auto it1 = v1.begin(), it2 = v2.begin();是错误的
it3是vector<int>::cosnt_iterator
it4是vector<int>::const_iterator


9.11  对6种创建和初始化vector对象的方法,每一种都给出一个实例。解释每个vector包含什么值。
答:vector<int> v1; //默认初始化,空vector
vector<int> v2 = {1, 2, 3}; //列表初始化,含有3个元素,值分别为1,2,3
vector<int> v3(v2); //拷贝初始化,拷贝v2,含有3个元素,值分别为1,2,3
vector<int> v4(10); //特定构造函数定义的初始化,含有10个元素,元素值初始化
vector<int> v5(10, 5); //特定构造函数定义的初始化,含有10个元素,元素值初始化为5
vector<int> v6(vector<int>::iterator b, vector<int>::iterator e); //特定构造函数定义的初始化,含有e-b个元素,元素值对应迭代器范围的元素值


9.12  对于接受一个容器创建其拷贝的构造函数,和接受两个迭代器创建拷贝的构造函数,解释它们的不同。
答:接受一个容器创建拷贝的构造函数要求容器类型和元素类型必须一致。
接受两个迭代器创建拷贝的构造函数只要求元素类型一致或者能隐式转换得到。


9.13  如何从一个list<int>初始化一个vector<double>?从一个vector<int>又该如何创建?编写代码验证你的答案。

  1. list<int> l = {1, 2, 3};
  2. vector<double> vd(l.begin(), l.end());
  3. vector<int> vi(l.begin(), l.end());


9.14    编写程序,将一个list中的char *指针(指向C风格字符串)元素赋值给一个vector中的string。

  1. list<const char *> t1;
  2. vector<string> t2;
  3. t2.assign(t1.cbegin(), t1.cend());

9.15  编写程序,判定两个vector<int>是否相等。
if (v1 == v2) //v1、v2是2个vector<int>


9.16  重写上一题的程序,比较一个list中的元素和一个vector中的元素。
答:会报错。如果实在要比较不同容器类型中元素的大小,可以选择把lis<int>中的元素拷贝到一个临时vector<int>变量中,然后再比较。


9.17  假定c1和c2是两个容器,下面的比较操作有何限制(如果有的话)?
if (c1 < c2)

答:并不是所有容器都定义了该运算符,比如list容器。所以使用该运算符是有限制的。


9.18  编写程序,从标准输入读取string序列,存入一个deque中。编写一个循环,用迭代器打印deque中的元素。

  1. #include<iostream>
  2. #include<string>
  3. #include<vector>
  4. #include<list>
  5. #include<deque>
  6. using namespace std;
  7. int main()
  8. {
  9. string word;
  10. deque<string> con;
  11. while (cin >> word)
  12. con.push_back(word);
  13. auto begin = con.begin();
  14. auto end = con.end();
  15. while (begin!=end)
  16. {
  17. cout << *begin ++<< endl;
  18. }
  19. return 0;
  20. }

9.19  重写上题的程序,用list替代deque。列出程序要做出哪些改变。

  1. #include<iostream>
  2. #include<string>
  3. #include<vector>
  4. #include<list>
  5. #include<deque>
  6. using namespace std;
  7. int main()
  8. {
  9. string word;
  10. list<string> con;
  11. while (cin >> word)
  12. con.push_back(word);
  13. auto begin = con.begin();
  14. auto end = con.end();
  15. while (begin!=end)
  16. {
  17. cout << *begin ++<< endl;
  18. }
  19. return 0;
  20. }

9.20  编写程序,从一个list<int>拷贝元素到两个deque中。值为偶数的所有元素都拷贝到一个deque中,而奇数值元素都拷贝到另一个deque中。

  1. #include<iostream>
  2. #include<string>
  3. #include<vector>
  4. #include<list>
  5. #include<deque>
  6. using namespace std;
  7. int main()
  8. {
  9. list<int> vec{ 0, 1, 3, 4, 5, 6, 7, 8 };
  10. deque<int> t1;
  11. deque<int> t2;
  12. auto begin = vec.begin();
  13. auto end = vec.end();
  14. while (begin != end)
  15. {
  16. if (*begin % 2)
  17. {
  18. t2.push_back(*begin++);
  19. }
  20. else
  21. {
  22. t1.push_back(*begin++);
  23. }
  24. }
  25. for (auto c : t1)
  26. {
  27. cout << c << " ";
  28. }
  29. cout << endl;
  30. for (auto c : t2)
  31. {
  32. cout << c << " ";
  33. }
  34. cout << endl;
  35. return 0;
  36. }

9.21  如果我们将第308页中使用insert返回值将元素添加到list中的循环程序改写为将元素插入到vector中,分析循环将如何工作。
答:与使用list容器没有任何区别,仅仅可能会有效率上的差异。


9.22  假定iv是一个int的vector,下面的程序存在什么错误?你将如何修改?
vector<int>::iterator iter = iv.begin(), mid = iv.begin() + iv.size() / 2;
while (iter != mid)
if (*iter == some_val)
iv.insert(iter, 2 * some_val);

  1. #include<iostream>
  2. #include<string>
  3. #include<vector>
  4. #include<list>
  5. #include<deque>
  6. using namespace std;
  7. int main()
  8. {
  9. vector<int> iv{2,2,2,3,4};
  10. vector<int>::iterator iter = iv.begin(), mid = iv.begin() + iv.size() / 2;
  11. int some_val = 2;
  12. while (iter != mid)
  13. {
  14. if (*iter == some_val)
  15. {
  16. iter=iv.insert(iter, 2 * some_val);
  17. mid = iv.begin() + iv.size() / 2+1;
  18. iter +=2;
  19. }
  20. else
  21. ++iter;
  22. }
  23. for (auto c : iv)
  24. {
  25. cout << c << " ";
  26. }
  27. cout << endl;
  28. return 0;
  29. }

注意:mid迭代器可能失效。


9.23  在本节第一个程序(第309页)中,若c.size()为1,则val、val2、val3和val4的值会是什么?
答:它们的值都将是第一个元素值。


9.24   编写程序,分别使用at、下标运算符、front和begin提取一个vector中的第一个元素。在一个空vector上测试你的程序。

  1. #include<string>
  2. #include<vector>
  3. #include<list>
  4. #include<deque>
  5. using namespace std;
  6. int main()
  7. {
  8. vector<int> c{1,2,3};
  9. cout << c.at(0) << endl;
  10. cout << c[0] << endl;
  11. cout << c.front() << endl;
  12. cout << *c.begin() << endl;
  13. return 0;
  14. }
当是一个空的时候,会报错。

9.25    对于第312页中删除一个范围内的元素的程序,如果elem1与elem2相等会发生什么?如果elem2是尾后迭代器,或者elem1和elem2皆为尾后迭代器,又会发生什么?

答:如果elem1和elem2相等,则范围为0不进行任何删除。如果elem2是尾后迭代器,那么从elem1删到结尾。如果两者皆为尾后迭代器,则范围为0不进行任何删除。


9.26  使用下面代码定义的ia,将ia拷贝到一个vector和一个list中。使用单迭代器版本的erase从list中删除奇数元素,从vector中删除偶数元素。
int ia[] = { 0, 1, 1, 2, 3, 5, 8, 13, 21, 55, 89 };

  1. #include<iostream>
  2. #include<string>
  3. #include<vector>
  4. #include<list>
  5. #include<deque>
  6. using namespace std;
  7. int main()
  8. {
  9. vector<int> c1;
  10. list<int> c2;
  11. int ia[] = { 0, 1, 1, 2, 3, 5, 8, 13, 21, 55, 89 };
  12. for (int i = 0; i < 11;i++)
  13. {
  14. c1.push_back(ia[i]);
  15. c2.push_back(ia[i]);
  16. }
  17. auto it1 = c1.begin();
  18. auto it2 = c2.begin();
  19. while (it1 != c1.end())//删除偶数
  20. {
  21. if (!(*it1 % 2))
  22. {
  23. it1 = c1.erase(it1);
  24. }
  25. else
  26. ++it1;
  27. }
  28. while (it2 != c2.end())//删除奇数
  29. {
  30. if (*it2 % 2)
  31. {
  32. it2 = c2.erase(it2);
  33. }
  34. else
  35. ++it2;
  36. }
  37. for (auto c : c1)
  38. {
  39. cout << c << " ";
  40. }
  41. cout << endl;
  42. for (auto c : c2)
  43. {
  44. cout << c << " ";
  45. }
  46. cout << endl;
  47. return 0;
  48. }

9.27  编写程序,查找并删除forward_list<int>中的奇数元素。

  1. #include<iostream>
  2. #include<string>
  3. #include<vector>
  4. #include<forward_list>
  5. #include<deque>
  6. using namespace std;
  7. int main()
  8. {
  9. forward_list<int> c1{ 0, 1, 2, 3, 54, 6, 7, 8 };
  10. auto prev = c1.before_begin();
  11. auto curr = c1.begin();
  12. while (curr!=c1.end())
  13. {
  14. if (*curr % 2)
  15. {
  16. curr = c1.erase_after(prev);
  17. }
  18. else
  19. {
  20. prev = curr;
  21. ++curr;
  22. }
  23. }
  24. for (auto c : c1)
  25. {
  26. cout << c << " ";
  27. }
  28. cout << endl;
  29. return 0;
  30. }

9.28  编写函数,接受一个forward_list<string>和两个string共三个参数。函数应在链表中查找第一个string,并将第二个string插入到紧接着第一个string之后的位置。若第一个string未在链表中,则将第二个string插入到链表末尾。

  1. #include<iostream>
  2. #include<string>
  3. #include<vector>
  4. #include<forward_list>
  5. #include<deque>
  6. using namespace std;
  7. void f1(forward_list<string> c, string s1, string s2)
  8. {
  9. auto prev = c.before_begin();
  10. auto curr = c.begin();
  11. int flag = 1;
  12. while (curr != c.end())
  13. {
  14. if (*curr == s1)
  15. {
  16. curr = c.insert_after(curr,s2);
  17. flag = 0;
  18. }
  19. prev = curr;//记录尾后迭代器前一个元素的位置
  20. curr++;
  21. }
  22. if (flag)
  23. {
  24. c.insert_after(prev,s2);
  25. }
  26. for (auto c1 : c)
  27. {
  28. cout << c1 << " ";
  29. }
  30. cout << endl;
  31. }
  32. int main()
  33. {
  34. forward_list<string> c1{ "s1","s2","s3" };
  35. string s1 = "s4";
  36. string s2 = "s22";
  37. f1(c1, s1, s2);
  38. return 0;
  39. }

9.29  假定vec包含25个元素,那么vec.resize(100)会做什么?如果接下来调用vec.resize(10)会做什么?
答:追加75个值初始化的元素到vec中。
删除vec靠后90个元素。

9.30  接受单个参数的resize版本对元素类型有什么限制(如果有的话)?
答:元素类型必须具有默认构造函数。

9.31  第316页中删除偶数值元素并复制奇数值元素的程序不能用于list或forward_list。为什么?修改程序,使之也能用于这些类型。
因为list和forward_list的迭代器不支持复合赋值运算。
对于list,iter += 2;应该修改为++iter;++iter;

9.32  在第316页的程序中,像下面语句这样调用insert是否合法?如果不合法,为什么?
iter = vi.insert(iter, *iter++);
不合法。因为参数的求值顺序是未指定,无法保证括号内的计算顺序。

9.33  在本节最后一个例子中,如果不将insert的结果赋予begin,将会发生什么?编写程序,去掉此赋值语句,验证你的答案。
不将insert的结果赋予begin,begin将会失效,程序无法正常工作或崩溃。

9.34  假定vi是一个保存int的容器,其中有偶数值也有奇数值,分析下面循环的行为,然后编写程序验证你的分析是否正确。

iter = vi.begin();
while (iter != vi.end())
if (*iter % 2)
iter = vi.insert(iter, *iter);
++iter;
死循环。


9.35  解释一个vector的capacity和size有何区别。
答:capacity表示在不重新分配内存空间的情况下,容器可以容纳多少元素,size值是容器已经保存的元素的个数。


9.36  一个容器的capacity可能小于它的size吗?
答:不可能。


9.37  为什么list或array没有capacity成员函数?
答:因为list是链表,不需要事先分配连续内存,而array不允许改变容器大小。


9.38  编写程序,探究在你的标准实现中,vector是如何增长的。

  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4. int main(int argc, char const *argv[])
  5. {
  6. vector<int> v = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
  7. v.reserve(50);
  8. cout << "v: size: " << v.size()
  9. << " capacity: " << v.capacity() << endl;
  10. while (v.size() != v.capacity())
  11. v.push_back(0);
  12. cout << "v: size: " << v.size()
  13. << " capacity: " << v.capacity() << endl;
  14. v.push_back(42);
  15. cout << "v: size: " << v.size()
  16. << " capacity: " << v.capacity() << endl;
  17. return 0;
  18. }



9.39  解释下面程序片段做了什么:
vector<string> svec;
svec.reserve(1024); //为该vevtor申请1024个元素空间
string word;
while (cin >> word)
svec.push_back(word);
svec.resize(svec.size() + svec.size() / 2); //将可以容纳1024个string的vector扩大0.5倍


9.40  如果上一题的程序读入了256个词,在resize之后容器的capacity可能是多少?如果读入了512个、1000个、或1048个呢?
答:如果读入了256个或512个词,capacity 仍然是 1024
如果读入了1000或1048个词,capacity 取决于具体实现。


9.41  编写程序,从一个vector<char>初始化一个string。
vector<char> v{ 'h', 'e', 'l', 'l', 'o' };
string s(v.cbegin(), v.cend());


9.42  假定你希望每次读取一个字符存入一个string中,而且知道最少需要读取100个字符,应该如何提高程序的性能?
答:使用 reserve(200) 函数预先分配200个元素的空间。


9.43  编写一个函数,接受三个string参数是s、oldVal 和newVal。使用迭代器及insert和erase函数将s中所有oldVal替换为newVal。测试你的程序,用它替换通用的简写形式,如,将"tho"替换为"though",将"thru"替换为"through"。

  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. void replaceString(std::string &s, const std::string &oldVal, const std::string &newVal){
  5. if (oldVal.empty() || s.empty()){
  6. return;
  7. }
  8. if (s.size() < oldVal.size()){
  9. return;
  10. }
  11. auto sIter = s.begin();
  12. auto oldIter = oldVal.begin();
  13. while (sIter != s.end()){
  14. if ((*sIter) == (*oldIter)){
  15. ++oldIter;
  16. }
  17. else {
  18. oldIter = oldVal.begin();
  19. }
  20. ++sIter;
  21. if (oldIter == oldVal.end()){
  22. oldIter = oldVal.begin();
  23. sIter = s.erase(sIter - oldVal.size(), sIter);
  24. for (std::string::size_type index = 0; index < newVal.size(); ++index){//一个字符一个字符的放进去。一次性放进去不行,以防被改变的字符串是最后一个字符串。
  25. sIter = s.insert(sIter, newVal[index]);
  26. ++sIter;
  27. }
  28. }
  29. }
  30. }
  31. int main()
  32. {
  33. string s("a an tho the thru");
  34. //f(s, "tho", "though");
  35. // f(s, "thru", "through");
  36. replaceString(s, "tho", "though");
  37. replaceString(s, "thru", "through");
  38. cout << s << endl;
  39. return 0;
  40. }


9.44  重写上一题的函数,这次使用一个下标和replace。

  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. void replaceString(std::string &s, const std::string &oldVal, const std::string &newVal){
  5. if (oldVal.empty() || s.empty()){
  6. return;
  7. }
  8. if (s.size() < oldVal.size()){
  9. return;
  10. }
  11. std::string::size_type sIndex = 0;
  12. std::string::size_type oldIndex = 0;
  13. while (sIndex < s.size()){
  14. if (oldVal[oldIndex] == s[sIndex]){
  15. ++oldIndex;
  16. }
  17. else {
  18. oldIndex = 0;
  19. }
  20. ++sIndex;
  21. if (oldIndex >= oldVal.size()){
  22. oldIndex = 0;
  23. s.replace(sIndex - oldVal.size(), oldVal.size(), newVal);
  24. sIndex += newVal.size() - oldVal.size();
  25. }
  26. }
  27. }
  28. int main()
  29. {
  30. string s("a an tho the thru");
  31. //f(s, "tho", "though");
  32. // f(s, "thru", "through");
  33. replaceString(s, "tho", "though");
  34. replaceString(s, "thru", "through");
  35. cout << s << endl;
  36. return 0;
  37. }


9.45  编写一个函数,接受一个表示名字的string参数和两个分别表示前缀(如"Mr."或"Ms.")和后缀(如"Jr."或"III")的字符串。使用迭代器及insert和append函数将前缀和后缀添加到给定的名字中,将生成的新string返回。

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. void f(string &s, const string &fr,const string &ba)
  5. {
  6. s.insert(s.begin(),fr.begin(),fr.end());
  7. s.append(ba);
  8. }
  9. int main()
  10. {
  11. string s("Jhon");
  12. f(s, "Mr ", " Jr");
  13. cout << s << endl;
  14. return 0;
  15. }


9.46  重写上一题的函数,这次使用位置和长度来管理string,并只使用insert。

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. void f(string &s, const string &fr,const string &ba)
  5. {
  6. s.insert(s.begin(),fr.begin(),fr.end());
  7. s.insert(s.end(), ba.begin(), ba.end());
  8. }
  9. int main()
  10. {
  11. string s("Jhon");
  12. f(s, "Mr ", " Jr");
  13. cout << s << endl;
  14. return 0;
  15. }


9.47  编写程序,首先查找string"ab2c3d7R4E6"中每个数字字符,然后查找其中每个字母字符。编写两个版本的程序,第一个要使用find_first_of,第二个要使用find_first_not_of。

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string num = "0123456789";
  7. string s("ab2c3d7R4E6");
  8. string::size_type pos = 0;
  9. while ((pos = s.find_first_of(num,pos)) != string ::npos)//输出每一个数字所在位置。
  10. {
  11. cout << pos << " ";
  12. pos++;
  13. }
  14. cout <<endl;
  15. pos = 0;
  16. while ((pos = s.find_first_not_of(num, pos)) != string::npos)//输出每一个数字所在位置。
  17. {
  18. cout << pos << " ";
  19. pos++;
  20. }
  21. //cout << pos << endl;
  22. return 0;
  23. }


9.48  假定name和numbers的定义如325页所示,numbers.find(name)返回什么?
答:返回string::npos


9.49  如果一个字母延伸到中线之上,如d 或 f,则称其有上出头部分(ascender)。如果一个字母延伸到中线之下,如p或g,则称其有下出头部分(descender)。编写程序,读入一个单词文件,输出最长的既不包含上出头部分,也不包含下出头部分的单词。

  1. #include <iostream>
  2. #include <fstream>
  3. #include<string>
  4. using namespace std;
  5. int main(int argc, char const *argv[])
  6. {
  7. //string serial = "abccefg";
  8. string not_in("bdfhkltgjpqy");
  9. ifstream is;
  10. string word, picked;
  11. string::size_type len = word.size();
  12. is.open("hello.txt");
  13. if (is)
  14. {
  15. cout << "open word.txt\n";
  16. while (is >> word)
  17. {
  18. string::size_type pos = 0;
  19. if ((pos = word.find_first_of(not_in, pos)) == string::npos)
  20. {
  21. if (word.size() > len)
  22. {
  23. len = word.size();
  24. picked = word;
  25. }
  26. }
  27. }
  28. cout << picked << endl;
  29. }
  30. return 0;
  31. }


9.50  编写程序处理一个vector<string>,其元素都表示整型值。计算vector中所有元素之和。修改程序,使之计算表示浮点值的string之和。


9.51  设计一个类,它有三个unsigned成员,分别表示年、月和日。为其编写构造函数,接受一个表示日期的string参数。你的构造函数应该能处理不同的数据格式,如January 1,1900、1/1/1990、Jan 1 1900 等。
是个硬搞的体力活,懒得写了。


9.52  使用stack处理括号化的表达式。当你看到一个左括号,将其记录下来。当你在一个左括号之后看到一个右括号,从stack中pop对象,直至遇到左括号,将左括号也一起弹出栈。然后将一个值(括号内的运算结果)push到栈中,表示一个括号化的(子)表达式已经处理完毕,被其运算结果所替代。

































声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/178339
推荐阅读
相关标签
  

闽ICP备14008679号