File: reverse_iterator.htm

package info (click to toggle)
boost 1.27.0-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 19,908 kB
  • ctags: 26,546
  • sloc: cpp: 122,225; ansic: 10,956; python: 4,412; sh: 855; yacc: 803; makefile: 257; perl: 165; lex: 90; csh: 6
file content (331 lines) | stat: -rw-r--r-- 11,266 bytes parent folder | download
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">

<html>
<head>
    <meta name="generator" content="HTML Tidy, see www.w3.org">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">

    <title>Reverse Iterator Adaptor Documentation</title>
</head>

<body bgcolor="#FFFFFF" text="#000000">
    <img src="../../c++boost.gif" alt="c++boost.gif (8819 bytes)" align=
    "center" width="277" height="86"> 

    <h1>Reverse Iterator Adaptor</h1>
    Defined in header <a href=
    "../../boost/iterator_adaptors.hpp">boost/iterator_adaptors.hpp</a> 

    <p>The reverse iterator adaptor flips the direction of a base iterator's
    motion. Invoking <tt>operator++()</tt> moves the base iterator backward and
    invoking <tt>operator--()</tt> moves the base iterator forward. The Boost
    reverse iterator adaptor is better to use than the
    <tt>std::reverse_iterator</tt> class in situations where pairs of
    mutable/constant iterators are needed (e.g., in containers) because
    comparisons and conversions between the mutable and const versions are
    implemented correctly.

    <h2>Synopsis</h2>
<pre>
namespace boost {
  template &lt;class <a href=
"http://www.sgi.com/tech/stl/BidirectionalIterator.html">BidirectionalIterator</a>,
            class Value, class Reference, class Pointer, class Category, class Distance&gt;
  struct reverse_iterator_generator;
  
  template &lt;class <a href=
"http://www.sgi.com/tech/stl/BidirectionalIterator.html">BidirectionalIterator</a>&gt;
  typename reverse_iterator_generator&lt;BidirectionalIterator&gt;::type
  make_reverse_iterator(BidirectionalIterator base)  
}
</pre>
    <hr>

    <h2><a name="reverse_iterator_generator">The Reverse Iterator Type
    Generator</a></h2>
    The <tt>reverse_iterator_generator</tt> template is a <a href=
    "../../more/generic_programming.html#type_generator">generator</a> of
    reverse iterator types. The main template parameter for this class is the
    base <tt>BidirectionalIterator</tt> type that is being adapted. In most
    cases the associated types of the base iterator can be deduced using
    <tt>std::iterator_traits</tt>, but in some situations the user may want to
    override these types, so there are also template parameters for the base
    iterator's associated types. 

    <blockquote>
<pre>
template &lt;class <a href=
"http://www.sgi.com/tech/stl/BidirectionalIterator.html">BidirectionalIterator</a>,
          class Value, class Reference, class Pointer, class Category, class Distance&gt;
class reverse_iterator_generator
{
public:
  typedef <tt><a href=
"./iterator_adaptors.htm#iterator_adaptor">iterator_adaptor</a>&lt;...&gt;</tt> type; // the resulting reverse iterator type 
};
</pre>
    </blockquote>

    <h3>Example</h3>
    In this example we sort a sequence of letters and then output the sequence
    in descending order using reverse iterators. 

    <blockquote>
<pre>
#include &lt;boost/config.hpp&gt;
#include &lt;iostream&gt;
#include &lt;algorithm&gt;
#include &lt;boost/iterator_adaptors.hpp&gt;

int main(int, char*[])
{
  char letters[] = "hello world!";
  const int N = sizeof(letters)/sizeof(char) - 1;
  std::cout &lt;&lt; "original sequence of letters:\t"
      &lt;&lt; letters &lt;&lt; std::endl;

  std::sort(letters, letters + N);

  // Use reverse_iterator_generator to print a sequence
  // of letters in reverse order.
  
  boost::reverse_iterator_generator&lt;char*&gt;::type
    reverse_letters_first(letters + N),
    reverse_letters_last(letters);

  std::cout &lt;&lt; "letters in descending order:\t";
  std::copy(reverse_letters_first, reverse_letters_last,
      std::ostream_iterator&lt;char&gt;(std::cout));
  std::cout &lt;&lt; std::endl;

  // to be continued...
</pre>
    </blockquote>
    The output is: 

    <blockquote>
<pre>
original sequence of letters: hello world!
letters in descending order:  wroolllhed! 
</pre>
    </blockquote>

    <h3>Template Parameters</h3>

    <table border>
      <tr>
        <th>Parameter

        <th>Description

      <tr>
        <td><tt><a href=
        "http://www.sgi.com/tech/stl/BidirectionalIterator.html">BidirectionalIterator</a></tt>
        

        <td>The iterator type being wrapped.

      <tr>
        <td><tt>Value</tt> 

        <td>The value-type of the base iterator and the resulting reverse
        iterator.<br>
         <b>Default:</b><tt>std::iterator_traits&lt;BidirectionalIterator&gt;::value_type</tt>
        

      <tr>
        <td><tt>Reference</tt> 

        <td>The <tt>reference</tt> type of the resulting iterator, and in
        particular, the result type of <tt>operator*()</tt>.<br>
         <b>Default:</b> If <tt>Value</tt> is supplied, <tt>Value&amp;</tt> is
        used. Otherwise
        <tt>std::iterator_traits&lt;BidirectionalIterator&gt;::reference</tt>
        is used.

      <tr>
        <td><tt>Pointer</tt> 

        <td>The <tt>pointer</tt> type of the resulting iterator, and in
        particular, the result type of <tt>operator-&gt;()</tt>.<br>
         <b>Default:</b> If <tt>Value</tt> was supplied, then <tt>Value*</tt>,
        otherwise
        <tt>std::iterator_traits&lt;BidirectionalIterator&gt;::pointer</tt>.

      <tr>
        <td><tt>Category</tt> 

        <td>The <tt>iterator_category</tt> type for the resulting iterator.<br>
         <b>Default:</b>
        <tt>std::iterator_traits&lt;BidirectionalIterator&gt;::iterator_category</tt>
        

      <tr>
        <td><tt>Distance</tt> 

        <td>The <tt>difference_type</tt> for the resulting iterator.<br>
         <b>Default:</b>
        <tt>std::iterator_traits&lt;BidirectionalIterator&amp;gt::difference_type</tt>
        
    </table>

    <h3>Concept Model</h3>
    The indirect iterator will model whichever <a href=
    "http://www.sgi.com/tech/stl/Iterators.html">standard iterator concept
    category</a> is modeled by the base iterator. Thus, if the base iterator is
    a model of <a href=
    "http://www.sgi.com/tech/stl/RandomAccessIterator.html">Random Access
    Iterator</a> then so is the resulting indirect iterator. If the base
    iterator models a more restrictive concept, the resulting indirect iterator
    will model the same concept. The base iterator must be at least a <a href=
    "http://www.sgi.com/tech/stl/BidirectionalIterator.html">Bidirectional
    Iterator</a> 

    <h3>Members</h3>
    The reverse iterator type implements the member functions and operators
    required of the <a href=
    "http://www.sgi.com/tech/stl/RandomAccessIterator.html">Random Access
    Iterator</a> concept. In addition it has the following constructor: 

    <blockquote>
<pre>
reverse_iterator_generator::type(const BidirectionalIterator&amp; it)
</pre>
    </blockquote>


    <br>
     <br>
     
    <hr>

    <p>

    <h2><a name="make_reverse_iterator">The Reverse Iterator Object
    Generator</a></h2>
    The <tt>make_reverse_iterator()</tt> function provides a more convenient
    way to create reverse iterator objects. The function saves the user the
    trouble of explicitly writing out the iterator types. 

    <blockquote>
<pre>
template &lt;class BidirectionalIterator&gt;
typename reverse_iterator_generator&lt;BidirectionalIterator&gt;::type
make_reverse_iterator(BidirectionalIterator base);
</pre>
    </blockquote>

    <h3>Example</h3>
    In this part of the example we use <tt>make_reverse_iterator()</tt> to
    print the sequence of letters in reverse-reverse order, which is the
    original order. 

    <blockquote>
<pre>
  // continuing from the previous example...

  std::cout &lt;&lt; "letters in ascending order:\t";
  std::copy(boost::make_reverse_iterator(reverse_letters_last),
      boost::make_reverse_iterator(reverse_letters_first),
      std::ostream_iterator&lt;char&gt;(std::cout));
  std::cout &lt;&lt; std::endl;

  return 0;
}
</pre>
    </blockquote>
    The output is: 

    <blockquote>
<pre>
letters in ascending order:  !dehllloorw
</pre>
    </blockquote>
    <hr>

    <h2><a name="interactions">Constant/Mutable Iterator Interactions</a></h2>

    <p>One failing of the standard <tt><a
    href="http://www.sgi.com/tech/stl/ReverseIterator.html">reverse_iterator</a></tt>
    adaptor is that it doesn't properly support interactions between adapted
    <tt>const</tt> and non-<tt>const</tt> iterators. For example:
<blockquote>
<pre>
#include &lt;vector&gt;

template &lt;class T&gt; void convert(T x) {}

// Test interactions of a matched pair of random access iterators
template &lt;class Iterator, class ConstIterator&gt;
void test_interactions(Iterator i, ConstIterator ci)
{
  bool eq = i == ci;               // comparisons
  bool ne = i != ci;            
  bool lt = i &lt; ci;
  bool le = i &lt;= ci;
  bool gt = i &gt; ci;
  bool ge = i &gt;= ci;
  std::size_t distance = i - ci;   // difference
  ci = i;                          // assignment
  ConstIterator ci2(i);            // construction
  convert&lt;ConstIterator&gt;(i);       // implicit conversion
}

void f()
{
  typedef std::vector&lt;int&gt; vec;
  vec v;
  const vec&amp; cv;

  test_interactions(v.begin(), cv.begin());   // <font color="#007F00">OK</font>
  test_interactions(v.rbegin(), cv.rbegin()); // <font color="#FF0000">ERRORS ON EVERY TEST!!</font>
</pre>
</blockquote>
Reverse iterators created with <tt>boost::reverse_iterator_generator</tt> don't have this problem, though:
<blockquote>
<pre>
  typedef boost::reverse_iterator_generator&lt;vec::iterator&gt;::type ri;
  typedef boost::reverse_iterator_generator&lt;vec::const_iterator&gt;::type cri;
  test_interactions(ri(v.begin()), cri(cv.begin()));   // <font color="#007F00">OK!!</font>
</pre>
</blockquote>
Or, more simply,
<blockquote>
<pre>
  test_interactions(
    boost::make_reverse_iterator(v.begin()), 
    boost::make_reverse_iterator(cv.begin()));   // <font color="#007F00">OK!!</font>
}
</pre>
</blockquote>

<p>If you are wondering why there is no
<tt>reverse_iterator_pair_generator</tt> in the manner of <tt><a
href="projection_iterator.htm#projection_iterator_pair_generator">projection_iterator_pair_generator</a></tt>,
the answer is simple: we tried it, but found that in practice it took
<i>more</i> typing to use <tt>reverse_iterator_pair_generator</tt> than to
simply use <tt>reverse_iterator_generator</tt> twice!<br><br>

<hr>

    
    <p>Revised 
    <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %b %Y" startspan -->19 Aug 2001<!--webbot bot="Timestamp" endspan i-checksum="14767" -->


    <p>&copy; Copyright Jeremy Siek 2000. Permission to copy, use, modify, sell
    and distribute this document is granted provided this copyright notice
    appears in all copies. This document is provided "as is" without express or
    implied warranty, and with no claim as to its suitability for any purpose. 
    <!--  LocalWords:  html charset alt gif hpp BidirectionalIterator const namespace struct
         -->
     
    <!--  LocalWords:  ConstPointer ConstReference typename iostream int abcdefg
         -->
     <!--  LocalWords:  sizeof  PairGen pre Siek wroolllhed dehllloorw
         -->
</body>
</html>