Cycle through v in the forward direction using an iterator. : vector iterator « vector « C++ Tutorial

Home
C++ Tutorial
1.Language Basics
2.Data Types
3.Operators statements
4.Array
5.Development
6.Exceptions
7.Function
8.Structure
9.Class
10.Operator Overloading
11.Pointer
12.File Stream
13.template
14.STL Introduction
15.string
16.vector
17.list
18.bitset
19.set multiset
20.valarray
21.queue stack
22.deque
23.map multimap
24.STL Algorithms Modifying sequence operations
25.STL Algorithms Non modifying sequence operations
26.STL Algorithms Binary search
27.STL Algorithms Sorting
28.STL Algorithms Merge
29.STL Algorithms Min Max
30.STL Algorithms Iterator
31.STL Algorithms Heap
32.STL Algorithms Helper
C / ANSI-C
C Tutorial
C++
Visual C++ .NET
C++ Tutorial » vector » vector iterator 
16.19.7.Cycle through v in the forward direction using an iterator.
#include <iostream>
#include <vector>

using namespace std;

void show(const char *msg, vector<int> vect);

int main() {
  // Declare a vector that has an initial capacity of 10.
  vector<int> v(10);

  for(unsigned i=0; i < v.size(); ++iv[i= i*i;

  show("Contents of v: ", v);

  // the use of the subscripting operator.
  int sum = 0;
  for(unsigned i=0; i < v.size(); ++isum += v[i];
  double avg = sum / v.size();
  cout << "The average of the elements is " << avg << "\n\n";

  // Add elements to the end of v.
  v.push_back(100);
  v.push_back(121);

  show("v after pushing elements onto the end: ", v);
  cout << endl;

  // Now use pop_back() to remove one element.
  v.pop_back();
  show("v after back-popping one element: ", v);
  cout << endl;

  // Declare an iterator to a vector<int>.
  vector<int>::iterator itr;
  // Now, declare reverse iterator to a vector<int>
  vector<int>::reverse_iterator ritr;

  // Cycle through v in the forward direction using an iterator.
  for(itr = v.begin(); itr != v.end(); ++itr)
    cout << *itr << " ";
  return 0;
}

void show(const char *msg, vector<int> vect) {
  cout << msg << endl;
  for(unsigned i=0; i < vect.size(); ++i)
    cout << vect[i<< endl;
}
16.19.vector iterator
16.19.1.Display contents of vector through an iterator
16.19.2.Use const_iterator to loop through the vector
16.19.3.Change contents of vector through an iterator
16.19.4.iterators for vector
16.19.5.Declare an iterator to a vector
16.19.6.Obtain an iterator to the start of vector
16.19.7.Cycle through v in the forward direction using an iterator.
16.19.8.Cycle through v in the reverse direction using a reverse_iterator.
16.19.9.See if iterator is still in the same spot of memory
16.19.10.Loop through all elements in a vector in reverse order by using rbegn, rend
16.19.11.Reverse iterators
16.19.12.Const iterators
16.19.13.Converting Between Iterators and Indexes in a Vector
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.