本 Wiki 开启了 HTTPS。但由于同 IP 的 Blog 也开启了 HTTPS,因此本站必须要支持 SNI 的浏览器才能浏览。为了兼容一部分浏览器,本站保留了 HTTP 作为兼容。如果您的浏览器支持 SNI,请尽量通过 HTTPS 访问本站,谢谢!
这里会显示出您选择的修订版和当前版本之间的差别。
两侧同时换到之前的修订记录前一修订版 | |||
cs:programming:cpp:cpp_primer:answers:chpt_5 [2024/01/14 13:46] – 移除 - 外部编辑 (未知日期) 127.0.0.1 | cs:programming:cpp:cpp_primer:answers:chpt_5 [2024/01/14 13:46] (当前版本) – ↷ 页面programming:cpp:cpp_primer:answers:chpt_5被移动至cs:programming:cpp:cpp_primer:answers:chpt_5 codinghare | ||
---|---|---|---|
行 1: | 行 1: | ||
+ | ======Chapter.5====== | ||
+ | 第五章的习题答案 | ||
+ | ---- | ||
+ | ====Ex.5.1-5.10==== | ||
+ | ==ex.5.1== | ||
+ | > | ||
+ | The null statement is a statement that consists of only a semicolon. It can be used when all you need is something to keep the program running properly. | ||
+ | ==ex.5.2== | ||
+ | > | ||
+ | The block is a set of statements and declarations, | ||
+ | ==ex.5.3== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | using std::cin; | ||
+ | using std::cout; | ||
+ | using std::endl; | ||
+ | |||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | int sum = 0, val = 1; | ||
+ | while (sum += val++, val <= 10) {;} | ||
+ | cout << "Sum of 1 to 10 inclusive is: " << sum << endl; | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | While the rewriting of the program raises the diminishing, | ||
+ | In my experience, I rarely saw programmers use comma operation in a loop conditions in order to move logic statements out of a block. In addition, the compound logic statement '' | ||
+ | ==ex.5.4== | ||
+ | > | ||
+ | <code cpp> | ||
+ | (a) while (string:: | ||
+ | |||
+ | //The loop is trying to traverse the string s by using iterator but forget to initialize the iterator, and didn't move the iterator forward in each looping. | ||
+ | |||
+ | Fix: | ||
+ | string:: | ||
+ | while (string:: | ||
+ | |||
+ | (b) while (bool status = find(word)) { /* . . . */ } | ||
+ | if (!status) { /* . . . */ } | ||
+ | |||
+ | //The condition variable " | ||
+ | |||
+ | Fix: | ||
+ | while (bool status = find(word)) { if (!status) { /* . . . */ }} | ||
+ | </ | ||
+ | ==ex.5.5== | ||
+ | > | ||
+ | CODE: [[https:// | ||
+ | ==ex.5.6== | ||
+ | > | ||
+ | <code cpp> | ||
+ | (a) if (ival1 != ival2) | ||
+ | ival1 = ival2 | ||
+ | else ival1 = ival2 = 0; | ||
+ | |||
+ | Fix: | ||
+ | if (ival1 != ival2) { | ||
+ | ival1 = ival2; | ||
+ | } | ||
+ | else { | ||
+ | ival1 = 0; | ||
+ | ival2 = 0; | ||
+ | } | ||
+ | |||
+ | (b) if (ival < minval) | ||
+ | minval = ival; | ||
+ | occurs = 1; | ||
+ | |||
+ | Fix: | ||
+ | if (ival < minval) { | ||
+ | minval = ival; | ||
+ | occurs = 1; | ||
+ | } | ||
+ | |||
+ | (c) if (int ival = get_value()) | ||
+ | cout << "ival = " << ival << endl; | ||
+ | if (!ival) | ||
+ | cout << "ival = 0\n"; | ||
+ | |||
+ | Fix: | ||
+ | if(int ival = get_value()) { | ||
+ | cout <<" | ||
+ | if (!val) { | ||
+ | cpit << "ival = 0\n"; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | (d) if (ival = 0) | ||
+ | ival = get_value(); | ||
+ | |||
+ | Fix: | ||
+ | if (ival == 0) | ||
+ | ival = get_value(); | ||
+ | </ | ||
+ | ==ex.5.8== | ||
+ | > | ||
+ | " Colloquial term used to refer to the problem of how to process nested if statements in which there are **more ifs than elses**. **In C++, an else is always paired with the closest preceding unmatched if.**" | ||
+ | ==ex.5.9== | ||
+ | > | ||
+ | CODE: [[https:// | ||
+ | ==ex.5.10== | ||
+ | > | ||
+ | CODE: [[https:// | ||
+ | ====Ex.5.11-5.20==== | ||
+ | ==ex.5.11== | ||
+ | > | ||
+ | CODE: [[https:// | ||
+ | ==ex.5.12== | ||
+ | > | ||
+ | Notice: Since the question description is not that accurate, there are two possible situations about to occur when counting the frequencies of '' | ||
+ | * If we only count every letter once, for example, the string '' | ||
+ | * if we evaluate those strings as a combination of letters, the program would evaluate the string in this way: '' | ||
+ | Those two different understandings leads to differernt approches. I have attached two solutions for them. The idea for the second soluation is coming from [[https:// | ||
+ | CODE: [[https:// | ||
+ | | ||
+ | ==ex.5.13== | ||
+ | > | ||
+ | <code cpp> | ||
+ | (a) unsigned aCnt = 0, eCnt = 0, iouCnt = 0; | ||
+ | char ch = next_text(); | ||
+ | switch (ch) { | ||
+ | //missing break for each case | ||
+ | case ' | ||
+ | case ' | ||
+ | default: iouCnt++; | ||
+ | } | ||
+ | </ | ||
+ | Fix: | ||
+ | <code cpp> | ||
+ | unsigned aCnt = 0, eCnt = 0, iouCnt = 0; | ||
+ | char ch = next_text(); | ||
+ | switch (ch) { | ||
+ | case ' | ||
+ | aCnt++; | ||
+ | break; | ||
+ | case ' | ||
+ | eCnt++; | ||
+ | break; | ||
+ | default: | ||
+ | iouCnt++; | ||
+ | break; | ||
+ | } | ||
+ | </ | ||
+ | <code cpp> | ||
+ | (b) unsigned index = some_value(); | ||
+ | switch (index) { | ||
+ | case 1: | ||
+ | int ix = get_value(); | ||
+ | ivec[ ix ] = index; | ||
+ | break; | ||
+ | default: //control flow transfer jumps into the variable socpe | ||
+ | ix = ivec.size()-1; | ||
+ | ivec[ ix ] = index; | ||
+ | </ | ||
+ | Fix: | ||
+ | <code cpp> | ||
+ | unsigned index = some_value(); | ||
+ | switch (index) { | ||
+ | case 1:{ | ||
+ | int ix = get_value(); | ||
+ | ivec[ ix ] = index; | ||
+ | break; | ||
+ | } | ||
+ | default: | ||
+ | int ix = ivec.size()-1; | ||
+ | ivec[ ix ] = index; | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | <code cpp> | ||
+ | (c) unsigned evenCnt = 0, oddCnt = 0; | ||
+ | int digit = get_num() % 10; | ||
+ | switch (digit) { | ||
+ | case 1, 3, 5, 7, 9: //syntax error for multiple cases | ||
+ | oddcnt++; | ||
+ | break; | ||
+ | case 2, 4, 6, 8, 10: | ||
+ | evencnt++; | ||
+ | break; | ||
+ | </ | ||
+ | Fix | ||
+ | <code cpp> | ||
+ | unsigned evenCnt = 0, oddCnt = 0; | ||
+ | int digit = get_num() % 10; | ||
+ | switch (digit) { | ||
+ | case 1: case 3: case 5: case 7: case 9: | ||
+ | oddcnt++; | ||
+ | break; | ||
+ | case 2: case 4: case 6: case 8: case 10: | ||
+ | evencnt++; | ||
+ | break; | ||
+ | } | ||
+ | </ | ||
+ | <code cpp> | ||
+ | (d) unsigned ival=512, jval=1024, kval=4096; | ||
+ | unsigned bufsize; | ||
+ | unsigned swt = get_bufCnt(); | ||
+ | switch(swt) { | ||
+ | case ival: | ||
+ | bufsize = ival * sizeof(int); | ||
+ | break; | ||
+ | case jval: | ||
+ | bufsize = jval * sizeof(int); | ||
+ | break; | ||
+ | case kval: | ||
+ | bufsize = kval * sizeof(int); | ||
+ | break; | ||
+ | } | ||
+ | </ | ||
+ | Fix: | ||
+ | <code cpp> | ||
+ | const unsigned ival=512, jval=1024, kval=4096; | ||
+ | unsigned bufsize; | ||
+ | unsigned swt = get_bufCnt(); | ||
+ | switch(swt) { | ||
+ | case ival: | ||
+ | bufsize = ival * sizeof(int); | ||
+ | break; | ||
+ | case jval: | ||
+ | bufsize = jval * sizeof(int); | ||
+ | break; | ||
+ | case kval: | ||
+ | bufsize = kval * sizeof(int); | ||
+ | break; | ||
+ | } | ||
+ | </ | ||
+ | ==ex.5.14== | ||
+ | > | ||
+ | CODE: [[https:// | ||
+ | ==ex.5.15== | ||
+ | > | ||
+ | <code cpp> | ||
+ | (a) for (int ix = 0; ix != sz; ++ix) { /* . . . */ } // the loop runs until ix reachs sz | ||
+ | if (ix != sz) //there is no need to test the condition again in loop body | ||
+ | // . . . | ||
+ | Fix:for (int ix = 0; ix != sz; ++ix) { //....} | ||
+ | |||
+ | (b) int ix; | ||
+ | for (ix != sz; ++ix) { /* . . . */ } //the same loop as (a). ix need to be initialized, | ||
+ | Fix: int ix = 0; for(; ix! =sz; ++ix) | ||
+ | |||
+ | (c) for (int ix = 0; ix != sz; ++ix, ++ sz) { /* . . . */ } the expression of sz will cause the loop to run forever. | ||
+ | Fix:for (int ix = 0; ix != sz; ++ix) {//....} | ||
+ | </ | ||
+ | ==ex.5.16== | ||
+ | Exercise 5.16: The while loop is particularly good at executing while some condition holds; for example, when we need to read values until end-of-file. The for loop is generally thought of as a step loop: An index steps through a range of values in a collection. Write an idiomatic use of each loop and then rewrite each using the other loop construct. If you could use only one | ||
+ | loop, which would you choose? Why? | ||
+ | <code cpp> | ||
+ | /* while idomatic */ | ||
+ | int i = 0; | ||
+ | while (cin >> i) {} | ||
+ | /* for version */ | ||
+ | for (int i = 0; cin >> i;) {} | ||
+ | /* for idomatic */ | ||
+ | for (int i = 0; i < 10; ++i) {} | ||
+ | /*while version*/ | ||
+ | int i = 0; | ||
+ | while (i < 10) { | ||
+ | ++i; | ||
+ | } | ||
+ | </ | ||
+ | I prefer '' | ||
+ | ==ex.5.17== | ||
+ | > | ||
+ | CODE: [[https:// | ||
+ | ==ex.5.18== | ||
+ | > | ||
+ | <code cpp> | ||
+ | |||
+ | (a) do | ||
+ | int v1, v2; | ||
+ | cout << " | ||
+ | if (cin >> v1 >> v2) | ||
+ | cout << "Sum is: " << v1 + v2 << endl; | ||
+ | while (cin); | ||
+ | /* Program (a) is trying to keep adding two numbers until the loop is over. The problem here is the loop body doesn' | ||
+ | Fix: | ||
+ | do { | ||
+ | int v1, v2; | ||
+ | cout << " | ||
+ | if (cin >> v1 >> v2) | ||
+ | cout << "Sum is: " << v1 + v2 << endl; | ||
+ | } while (cin); | ||
+ | </ | ||
+ | <code cpp> | ||
+ | (b) do { | ||
+ | // . . . | ||
+ | } while (int ival = get_response()); | ||
+ | /* define a control variable insde the while condtiion is not allowed. */ | ||
+ | Fix: | ||
+ | int ival = get_response(); | ||
+ | do { | ||
+ | // . . . | ||
+ | } while (/*...*/); | ||
+ | </ | ||
+ | <code cpp> | ||
+ | /* ival is not defined in the do while condition scope. */ | ||
+ | (c) do { | ||
+ | int ival = get_response(); | ||
+ | } while (ival) | ||
+ | |||
+ | Fix: | ||
+ | int ival = get_response(); | ||
+ | do { | ||
+ | ... | ||
+ | } while (ival) | ||
+ | </ | ||
+ | ==ex.5.19== | ||
+ | > | ||
+ | CODE: [[https:// | ||
+ | ==ex.5.20== | ||
+ | > | ||
+ | CODE: [[https:// | ||
+ | ====Ex.5.21-5.25==== | ||
+ | ==ex.5.21== | ||
+ | > | ||
+ | CODE: [[https:// | ||
+ | ==ex.5.22== | ||
+ | > | ||
+ | <code cpp> | ||
+ | for (int sz = get_size(); sz <= 0; sz = get_size()) {;} | ||
+ | </ | ||
+ | ==ex.5.23== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | using std::cin; | ||
+ | using std::cout; | ||
+ | using std::endl; | ||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | int a{0}, b{0}; | ||
+ | cin >> a >> b; | ||
+ | cout << a * 1.0 / b << endl; | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | ==ex.5.24== | ||
+ | > | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | #include < | ||
+ | using std:: | ||
+ | using std::cin; | ||
+ | using std::cout; | ||
+ | using std::endl; | ||
+ | |||
+ | int main(int argc, char const *argv[]) | ||
+ | { | ||
+ | int a{0}, b{0}; | ||
+ | |||
+ | cin >> a >> b; | ||
+ | if (b == 0) { | ||
+ | throw logic_error(" | ||
+ | } | ||
+ | else | ||
+ | cout << a * 1.0 / b << endl; | ||
+ | |||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ==ex5.25== | ||
+ | > | ||
+ | CODE: [[https:// | ||