forked from pdeitel/CPlusPlus20ForProgrammers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfig15_20.cpp
executable file
·59 lines (51 loc) · 2.54 KB
/
fig15_20.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// fig15_20.cpp
// Implementing customDistance using template metaprogramming.
#include <array>
#include <iostream>
#include <iterator>
#include <list>
#include <ranges>
#include <type_traits>
// calculate the distance (number of items) between two iterators;
// requires at least input iterators
template <std::input_iterator Iterator>
auto customDistance(Iterator begin, Iterator end) {
// for random-access iterators subtract the iterators
if constexpr (std::is_base_of_v<std::random_access_iterator_tag,
Iterator::iterator_category>) {
std::cout << "customDistance with random-access iterators\n";
return end - begin; // O(1) operation for random-access iterators
}
else { // for all other iterators
std::cout << "customDistance with non-random-access iterators\n";
std::ptrdiff_t count{0};
// increment from begin to end and count number of iterations;
// O(n) operation for non-random-access iterators
for (auto iter{begin}; iter != end; ++iter) {
++count;
}
return count;
}
}
int main() {
const std::array ints1{1, 2, 3, 4, 5}; // has random-access iterators
const std::list ints2{1, 2, 3}; // has bidirectional iterators
auto result1{customDistance(ints1.begin(), ints1.end())};
std::cout << "ints1 number of elements: " << result1 << "\n";
auto result2{customDistance(ints2.begin(), ints2.end())};
std::cout << "ints2 number of elements: " << result2 << "\n";
}
/**************************************************************************
* (C) Copyright 1992-2022 by Deitel & Associates, Inc. and *
* Pearson Education, Inc. All Rights Reserved. *
* *
* DISCLAIMER: The authors and publisher of this book have used their *
* best efforts in preparing the book. These efforts include the *
* development, research, and testing of the theories and programs *
* to determine their effectiveness. The authors and publisher make *
* no warranty of any kind, expressed or implied, with regard to these *
* programs or to the documentation contained in these books. The authors *
* and publisher shall not be liable in any event for incidental or *
* consequential damages in connection with, or arising out of, the *
* furnishing, performance, or use of these programs. *
**************************************************************************/