Skip to content

Commit a6a3f39

Browse files
committed
Updated Chapter 8 examples
1 parent 49c79dc commit a6a3f39

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+2474
-706
lines changed

examples/ch08/fig08_01.cpp

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
// fig08_01.cpp
22
// Demonstrating string assignment and concatenation.
3+
#include <fmt/format.h>
34
#include <iostream>
45
#include <string>
5-
#include "fmt/format.h" // In C++20, this will be #include <format>
6-
using namespace std;
76

87
int main() {
9-
string s1{"cat"};
10-
string s2; // initialized to the empty string
11-
string s3; // initialized to the empty string
8+
std::string s1{"cat"};
9+
std::string s2; // initialized to the empty string
10+
std::string s3; // initialized to the empty string
1211

1312
s2 = s1; // assign s1 to s2
1413
s3.assign(s1); // assign s1 to s3
15-
cout << fmt::format("s1: {}\ns2: {}\ns3: {}\n\n", s1, s2, s3);
14+
std::cout << fmt::format("s1: {}\ns2: {}\ns3: {}\n\n", s1, s2, s3);
1615

1716
s2.at(0) = 'r'; // modify s2
1817
s3.at(2) = 'r'; // modify s3
19-
cout << fmt::format("After modifications:\ns2: {}\ns3: {}", s2, s3);
18+
std::cout << fmt::format("After changes:\ns2: {}\ns3: {}", s2, s3);
2019

21-
cout << "\n\nAfter concatenations:\n";
22-
string s4{s1 + "apult"}; // concatenation
20+
std::cout << "\n\nAfter concatenations:\n";
21+
std::string s4{s1 + "apult"}; // concatenation
2322
s1.append("acomb"); // create "catacomb"
2423
s3 += "pet"; // create "carpet" with overloaded +=
25-
cout << fmt::format("s1: {}\ns3: {}\ns4: {}\n", s1, s3, s4);
24+
std::cout << fmt::format("s1: {}\ns3: {}\ns4: {}\n", s1, s3, s4);
2625

2726
// append locations 4 through end of s1 to
2827
// create string "comb" (s5 was initially empty)
29-
string s5; // initialized to the empty string
28+
std::string s5; // initialized to the empty string
3029
s5.append(s1, 4, s1.size() - 4);
31-
cout << fmt::format("s5: {}", s5);
30+
std::cout << fmt::format("s5: {}", s5);
3231
}
3332

33+
3434
/**************************************************************************
35-
* (C) Copyright 1992-2017 by Deitel & Associates, Inc. and *
35+
* (C) Copyright 1992-2022 by Deitel & Associates, Inc. and *
3636
* Pearson Education, Inc. All Rights Reserved. *
3737
* *
3838
* DISCLAIMER: The authors and publisher of this book have used their *

examples/ch08/fig08_02.cpp

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
// fig08_02.cpp
22
// Comparing strings.
3+
#include <fmt/format.h>
34
#include <iostream>
45
#include <string>
5-
#include "fmt/format.h" // In C++20, this will be #include <format>
6-
using namespace std;
76

8-
void displayResult(const string& s, int result) {
7+
void displayResult(const std::string& s, int result) {
98
if (result == 0) {
10-
cout << s + " == 0\n";
9+
std::cout << fmt::format("{} == 0\n", s);
1110
}
1211
else if (result > 0) {
13-
cout << s + " > 0\n";
12+
std::cout << fmt::format("{} > 0\n", s);
1413
}
1514
else { // result < 0
16-
cout << s + " < 0\n";
15+
std::cout << fmt::format("{} < 0\n", s);
1716
}
1817
}
1918

2019
int main() {
21-
const string s1{"Testing the comparison functions."};
22-
const string s2{"Hello"};
23-
const string s3{"stinger"};
24-
const string s4{s2}; // "Hello"
20+
const std::string s1{"Testing the comparison functions."};
21+
const std::string s2{"Hello"};
22+
const std::string s3{"stinger"};
23+
const std::string s4{s2}; // "Hello"
2524

26-
cout << fmt::format("s1: {}\ns2: {}\ns3: {}\ns4: {}", s1, s2, s3, s4);
25+
std::cout << fmt::format("s1: {}\ns2: {}\ns3: {}\ns4: {}",
26+
s1, s2, s3, s4);
2727

2828
// comparing s1 and s4
2929
if (s1 > s4) {
30-
cout << "\n\ns1 > s4\n";
30+
std::cout << "\n\ns1 > s4\n";
3131
}
3232

3333
// comparing s1 and s2
3434
displayResult("s1.compare(s2)", s1.compare(s2));
3535

36-
// comparing s1 (elements 2-5) and s3 (elements 0-5)
36+
// comparing s1 (elements 2-6) and s3 (elements 0-4)
3737
displayResult("s1.compare(2, 5, s3, 0, 5)",
3838
s1.compare(2, 5, s3, 0, 5));
3939

@@ -43,11 +43,11 @@ int main() {
4343

4444
// comparing s2 and s4
4545
displayResult("s2.compare(0, 3, s4)", s2.compare(0, 3, s4));
46-
}
46+
}
4747

4848

4949
/**************************************************************************
50-
* (C) Copyright 1992-2017 by Deitel & Associates, Inc. and *
50+
* (C) Copyright 1992-2022 by Deitel & Associates, Inc. and *
5151
* Pearson Education, Inc. All Rights Reserved. *
5252
* *
5353
* DISCLAIMER: The authors and publisher of this book have used their *

examples/ch08/fig08_03.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
// Demonstrating string member function substr.
33
#include <iostream>
44
#include <string>
5-
using namespace std;
65

76
int main() {
8-
const string s{"airplane"};
9-
cout << s.substr(3, 4) << endl; // retrieve substring "plan"
7+
const std::string s{"airplane"};
8+
std::cout << s.substr(3, 4) << '\n'; // retrieve substring "plan"
109
}
1110

1211

12+
1313
/**************************************************************************
14-
* (C) Copyright 1992-2017 by Deitel & Associates, Inc. and *
14+
* (C) Copyright 1992-2022 by Deitel & Associates, Inc. and *
1515
* Pearson Education, Inc. All Rights Reserved. *
1616
* *
1717
* DISCLAIMER: The authors and publisher of this book have used their *

examples/ch08/fig08_04.cpp

+7-11
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
// fig08_04.cpp
22
// Using the swap function to swap two strings.
3+
#include <fmt/format.h>
34
#include <iostream>
45
#include <string>
5-
#include "fmt/format.h" // In C++20, this will be #include <format>
6-
using namespace std;
76

87
int main() {
9-
string first{"one"};
10-
string second{"two"};
8+
std::string s1{"one"};
9+
std::string s2{"two"};
1110

12-
cout << fmt::format(
13-
"Before swap:\nfirst: {}; second: {}", first, second);
14-
first.swap(second); // swap strings
15-
cout << fmt::format(
16-
"\n\nAfter swap:\nfirst: {}; second: {}", first, second);
11+
std::cout << fmt::format("Before swap:\ns1: {}; s2: {}", s1, s2);
12+
s1.swap(s2); // swap strings
13+
std::cout << fmt::format("\n\nAfter swap:\ns1: {}; s2: {}", s1, s2);
1714
}
1815

19-
2016
/**************************************************************************
21-
* (C) Copyright 1992-2017 by Deitel & Associates, Inc. and *
17+
* (C) Copyright 1992-2022 by Deitel & Associates, Inc. and *
2218
* Pearson Education, Inc. All Rights Reserved. *
2319
* *
2420
* DISCLAIMER: The authors and publisher of this book have used their *

examples/ch08/fig08_05.cpp

+19-24
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,48 @@
11
// fig08_05.cpp
22
// Printing string characteristics.
3+
#include <fmt/format.h>
34
#include <iostream>
45
#include <string>
5-
#include "fmt/format.h" // In C++20, this will be #include <format>
6-
using namespace std;
76

87
// display string statistics
9-
void printStatistics(const string& s) {
10-
cout << fmt::format("capacity: {}\nmax size: {}\nsize: {}\nempty: {}",
8+
void printStatistics(const std::string& s) {
9+
std::cout << fmt::format(
10+
"capacity: {}\nmax size: {}\nsize: {}\nempty: {}",
1111
s.capacity(), s.max_size(), s.size(), s.empty());
1212
}
1313

1414
int main() {
15-
string string1; // empty string
15+
std::string string1; // empty string
1616

17-
cout << "Statistics before input:\n";
17+
std::cout << "Statistics before input:\n";
1818
printStatistics(string1);
1919

20-
cout << "\n\nEnter a string: ";
21-
cin >> string1; // delimited by whitespace
22-
cout << "The string entered was: " << string1;
23-
cout << "\nStatistics after input:\n";
20+
std::cout << "\n\nEnter a string: ";
21+
std::cin >> string1; // delimited by whitespace
22+
std::cout << fmt::format("The string entered was: {}\n", string1);
23+
std::cout << "Statistics after input:\n";
2424
printStatistics(string1);
2525

26-
cout << "\n\nEnter a string: ";
27-
cin >> string1; // delimited by whitespace
28-
cout << "The string entered was: " << string1;
29-
cout << "\nStatistics after input:\n";
26+
std::cout << "\n\nEnter a string: ";
27+
std::cin >> string1; // delimited by whitespace
28+
std::cout << fmt::format("The string entered was: {}\n", string1);
29+
std::cout << "Statistics after input:\n";
3030
printStatistics(string1);
3131

3232
// append 46 characters to string1
3333
string1 += "1234567890abcdefghijklmnopqrstuvwxyz1234567890";
34-
cout << "\n\nstring1 is now: " << string1;
35-
cout << "\nStatistics after concatenation:\n";
34+
std::cout << fmt::format("\n\nstring1 is now: {}\n", string1);
35+
std::cout << "Statistics after concatenation:\n";
3636
printStatistics(string1);
3737

3838
string1.resize(string1.size() + 10); // add 10 elements to string1
39-
cout << "\n\nStatistics after resizing to add 10 characters:\n";
39+
std::cout << "\n\nStatistics after resizing to add 10 characters:\n";
4040
printStatistics(string1);
41-
cout << endl;
41+
std::cout << '\n';
4242
}
4343

44-
45-
46-
47-
48-
4944
/**************************************************************************
50-
* (C) Copyright 1992-2017 by Deitel & Associates, Inc. and *
45+
* (C) Copyright 1992-2022 by Deitel & Associates, Inc. and *
5146
* Pearson Education, Inc. All Rights Reserved. *
5247
* *
5348
* DISCLAIMER: The authors and publisher of this book have used their *

examples/ch08/fig08_06.cpp

+14-15
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,50 @@
11
// fig08_06.cpp
22
// Demonstrating the string find member functions.
3+
#include <fmt/format.h>
34
#include <iostream>
45
#include <string>
5-
#include "fmt/format.h" // In C++20, this will be #include <format>
6-
using namespace std;
76

87
int main() {
9-
const string s{"noon is 12pm; midnight is not"};
10-
cout << "Original string: " << s;
8+
const std::string s{"noon is 12pm; midnight is not"};
9+
std::cout << "Original string: " << s;
1110

1211
// find "is" from the beginning and end of s
13-
cout << fmt::format("\ns.find(\"is\"): {}\ns.rfind(\"is\"): {}",
12+
std::cout << fmt::format("\ns.find(\"is\"): {}\ns.rfind(\"is\"): {}",
1413
s.find("is"), s.rfind("is"));
1514

1615
// find 'o' from beginning
17-
int location = s.find_first_of("misop");
18-
cout << fmt::format("\ns.find_first_of(\"misop\") found {} at {}",
16+
int location{s.find_first_of("misop")};
17+
std::cout << fmt::format("\ns.find_first_of(\"misop\") found {} at {}",
1918
s.at(location), location);
2019

2120
// find 'o' from end
2221
location = s.find_last_of("misop");
23-
cout << fmt::format("\ns.find_last_of(\"misop\") found {} at {}",
22+
std::cout << fmt::format("\ns.find_last_of(\"misop\") found {} at {}",
2423
s.at(location), location);
2524

2625
// find '1' from beginning
2726
location = s.find_first_not_of("noi spm");
28-
cout << fmt::format(
27+
std::cout << fmt::format(
2928
"\ns.find_first_not_of(\"noi spm\") found {} at {}",
3029
s.at(location), location);
3130

32-
// find ';'
31+
// find ';' at location 12
3332
location = s.find_first_not_of("12noi spm");
34-
cout << fmt::format(
33+
std::cout << fmt::format(
3534
"\ns.find_first_not_of(\"12noi spm\") found {} at {}",
3635
s.at(location), location);
3736

3837
// search for characters not in "noon is 12pm; midnight is not"
3938
location = s.find_first_not_of("noon is 12pm; midnight is not");
40-
cout << fmt::format("\ns.find_first_not_of("s +
41-
"\"noon is 12pm; midnight is not\"): {}"s, location);
39+
std::cout << fmt::format("\n{}: {}\n",
40+
"s.find_first_not_of(\"noon is 12pm; midnight is not\")",
41+
location);
4242
}
4343

4444

4545

46-
4746
/**************************************************************************
48-
* (C) Copyright 1992-2017 by Deitel & Associates, Inc. and *
47+
* (C) Copyright 1992-2022 by Deitel & Associates, Inc. and *
4948
* Pearson Education, Inc. All Rights Reserved. *
5049
* *
5150
* DISCLAIMER: The authors and publisher of this book have used their *

examples/ch08/fig08_07.cpp

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,48 @@
11
// fig08_07.cpp
22
// Demonstrating string member functions erase and replace.
3+
#include <fmt/format.h>
34
#include <iostream>
45
#include <string>
5-
#include "fmt/format.h" // In C++20, this will be #include <format>
6-
using namespace std;
76

87
int main() {
98
// compiler concatenates all parts into one string
10-
string string1{"The values in any left subtree"
9+
std::string string1{"The values in any left subtree"
1110
"\nare less than the value in the"
1211
"\nparent node and the values in"
1312
"\nany right subtree are greater"
1413
"\nthan the value in the parent node"};
1514

16-
cout << fmt::format("Original string:\n{}\n\n", string1);
15+
std::cout << fmt::format("Original string:\n{}\n\n", string1);
1716

1817
string1.erase(62); // remove from index 62 through end of string1
19-
cout << fmt::format("string1 after erase:\n{}\n", string1);
18+
std::cout << fmt::format("string1 after erase:\n{}\n\n", string1);
2019

21-
size_t position = string1.find(" "); // find first space
20+
size_t position{string1.find(" ")}; // find first space
2221

2322
// replace all spaces with period
24-
while (position != string::npos) {
23+
while (position != std::string::npos) {
2524
string1.replace(position, 1, ".");
2625
position = string1.find(" ", position + 1);
2726
}
2827

29-
cout << fmt::format("After first replacement:\n{}\n", string1);
28+
std::cout << fmt::format("After first replacement:\n{}\n\n", string1);
3029

3130
position = string1.find("."); // find first period
3231

3332
// replace all periods with two semicolons
3433
// NOTE: this will overwrite characters
35-
while (position != string::npos) {
34+
while (position != std::string::npos) {
3635
string1.replace(position, 2, "xxxxx;;yyy", 5, 2);
37-
position = string1.find(".", position + 1);
36+
position = string1.find(".", position + 2);
3837
}
3938

40-
cout << fmt::format("After second replacement:\n{}\n", string1);
39+
std::cout << fmt::format("After second replacement:\n{}\n", string1);
4140
}
4241

4342

43+
4444
/**************************************************************************
45-
* (C) Copyright 1992-2017 by Deitel & Associates, Inc. and *
45+
* (C) Copyright 1992-2022 by Deitel & Associates, Inc. and *
4646
* Pearson Education, Inc. All Rights Reserved. *
4747
* *
4848
* DISCLAIMER: The authors and publisher of this book have used their *

0 commit comments

Comments
 (0)