Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Programming \ STL source code analysis - iterator each container classification     - Linux Demo dd IO test (Linux)

- To learn from scratch OpenWrt perfect tutorial (Linux)

- ASP.NET 5 is connected with the Redis server on the Linux platform (Server)

- Linux source code to install Apache and solutions to common errors (Server)

- Python 3 for instructions encoded string conversion (Programming)

- Use install_updates upgrade GAMIT / GLOBK (Linux)

- Use Swift remove the spaces in the string (Programming)

- Github Remote Assistance (Linux)

- Python: Finding meet the conditions specified in the file directory (Programming)

- Security measures under Unix multi-user operating system (Linux)

- Security Features Linux and Unix operating system, programming (Linux)

- Using FTPClient to upload and download files in Java (Programming)

- C ++ string in the end (Programming)

- Using Lua implement various operations list (Programming)

- Use Hexo quickly build and deploy a blog to Github (Server)

- Installing PHP Memcache extension under Linux (Server)

- User and user group management Linux Command (Linux)

- Redis master-slave replication switch (Database)

- Python in os.path Magical (Programming)

- RabbitMQ Getting Started Tutorial (Linux)

 
         
  STL source code analysis - iterator each container classification
     
  Add Date : 2018-11-21      
         
         
         
  Five iterator as follows:

1, input iterator: read-only, one pass

As input iterator predefined implementations only istream_iterator and istreambuf_iterator, for reading from an input stream istream in. An input iterator for each element only once it has chosen to resolve, they can only move forward. A special constructor is defined beyond the end of the value. Always, input iterator can read the results of parsing (parse only once for each value), and then move forward.

2, the output iterator: write only, one pass

This is in addition to the input iterators, but instead of reading the write operation. Output iterator predefined implementations only ostream_iterator and ostreambuf_iterator, used to write data to an output stream ostream, there is generally a less used raw_storage_iterator. They parsed only once for each value written, and can only move forward. For output iterator, it is not used beyond the end of the value to the end of the concept. In short, the value of output iterator can write to parse (only parsed once for each value), and then move forward.

3, forward iterators: multiple read / write

Forward iterators contain both input and output iterator functions, plus you can also resolve many an iterator specified location, it can be a value for multiple read / write. As the name suggests, forward iterators can only move forward. Not the forward iterator predefined iterators.

4, bidirectional iterators: operator--

Bidirectional iterator has all the features the forward iteration. In addition it can be used and decrement operator-- backward move one position. Container from the list returned iterators are bidirectional.

5, random access iterators: similar to a pointer

Random access iterator bidirectional iterator has all the features, plus a pointer to all the functions (a pointer is a random access iterator), except that no kind of "empty (null)" iterators and null pointer corresponds. Basically it can be said, a random access iterator as a pointer that can carry out any operation, including the use of operator operator [] index, add a value to a pointer can move forward or backward a number of positions, or use a comparison between the iterator compare.

vector and deque offer is RandomAccessIterator, list is provided by iterators BidirectionalIterator, set and map is provided Bidirectional Iterator, hash_set and hash_map iterator is Forward Iterator. About the STL iterator iterator as follows:

Iterator category

Explanation

Input iterator

Read elements from the container. Input iterator can only be read into one element is moved forward again only supports input iterator algorithm, the same input iterator can traverse a sequence twice

Output iterator

Write element to the container. Output iterator can only move forward one at a time element. Output iterator algorithm supports only once, not twice unified output iterator to traverse a sequence

Forward iterators

Combination of input and output iterator iterator function, and retain the position in the container

Bidirectional iterators

Combination of forward and reverse iterator iterator function, support multi-pass algorithm

Random access iterators

Combination of bidirectional iterators functions and features direct access to any element of the container, you can skip forward any elements backwards

Iterator operations:

Each iterator can be carried out, including the operating table before an iterative can be carried out. By overloaded operators to achieve, and what action to support iterators can perform what operation is determined by the iterator overloaded operator nature of the operation of the iterator.

Iterator type of operation Type Description
All iterators

p ++

++ P

Post-increment iterator

Pre-increment iterator s's

Input iterator

* P

p = p1

p == p1

p! = p1

Dereferenced iterator, as a right value

An iterator assigned to another iterator

Compare iterators for equality

Compare iterator inequality

Output iterator

* P

p = p1

Dereferenced iterator, as lvalue

An iterator assigned to another iterator

Forward iterators

Provide all input and output iterator function

 

Bidirectional iterators

--p

p--

Pre-decrement iterator

Post-decrement iterator

Random access iterators

p + = i

p- = i

p + i

p-i

p [i]

p < p1

p < = p1

p> p1

p> = p1

Increment the iterator i bits

Decrement the iterator i bits

In the p bits plus i bit iterator

In the p bit down i bit iterator

Returns the p-bit elements departing from the i-th element reference

If the iterator p position before p1, returns true, false otherwise

p position returns true if the front or in the same position p1, and false otherwise

If the iterator p position after p1, returns true, false otherwise

p returns true if the position or behind the same position p1, and false otherwise

 Only order containers and associative containers support iterators traversal iterator each container supports the following categories:
Container supports iterator category container supports iterator category container supports iterator category
vector random access random access list bidirectional deque
bi-directional bi multiset set bidirectional map
multimap does not support two-way stack does not support queue
priority_queue not supported before hash_set forward to hash_map
     
         
         
         
  More:      
 
- Linux gprof oprofiling and performance testing tools (Linux)
- Using RAID in Linux: Create a RAID 5 (Linux)
- MySQL & NoSQL - Memcached widget (Database)
- Zabbix configure DataGuard monitoring (Database)
- ARM Linux system call (Linux)
- Docker Basic and Advanced (Linux)
- command-line tool for send e-mail (Linux)
- Sorting algorithm of dichotomy (binary) insertion sort algorithm (Programming)
- Ubuntu 15.04 installation MATE 1.10 (Linux)
- Spring inject a type of object to enumerate (Programming)
- The most common and most effective security settings under linux (Linux)
- Debugging with GDB tool Go (Programming)
- Use the DBMS_SCHEDULER package to manage scheduled tasks (Database)
- Linux uses a screen recording under RecordMyDesktop (Linux)
- Vim configuration instructions (Linux)
- Type Linux commands (Linux)
- An example of troubleshooting of embedded Linux OpenWRT (Linux)
- Linux System Getting Started Learning: Using yum to download the RPM package without installing (Linux)
- Linux process or thread is bound to a CPU (Programming)
- Ubuntu system cp: omitting directory problem (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.