Iterator (English Wikipedia)

Analysis of information sources in references of the Wikipedia article "Iterator" in English language version.

Last modified:

Ref.Un. Ref.Website
Global rank English rank
1st place
1st place
8,178th place
7,970th place
low place
low place
5,444th place
3,130th place
6,944th place
5,088th place
low place
low place
low place
low place
2nd place
2nd place
15th place
8th place
4,399th place
3,941st place
low place
low place
low place
low place
low place
low place
low place
low place
2,532nd place
1,847th place

cprogramming.com (Global: low place; English: low place)

  • Alex Allain. "STL Iterators". Cprogramming.com - Your resource for C and C++. Retrieved 2012-08-08. You can think of an iterator as pointing to an item that is part of a larger container of items.

doi.org (Global: 2nd place; English: 2nd place)

exegetic.biz (Global: low place; English: low place)

oracle.com (Global: 2,532nd place; English: 1,847th place)

docs.oracle.com

oreilly.com (Global: 6,944th place; English: 5,088th place)

shop.oreilly.com

perl.com (Global: low place; English: low place)

  • Gatcomb, Joshua (Jun 16, 2005). "Understanding and Using Iterators". Perl.com. Retrieved 2012-08-08. A user-defined iterator usually takes the form of a code reference that, when executed, calculates the next item in a list and returns it. When the iterator reaches the end of the list, it returns an agreed-upon value.

php.net (Global: 8,178th place; English: 7,970th place)

secure.php.net

phpro.org (Global: low place; English: low place)

python.org (Global: 4,399th place; English: 3,941st place)

docs.python.org

rust-lang.org (Global: low place; English: low place)

doc.rust-lang.org

semanticscholar.org (Global: 15th place; English: 8th place)

api.semanticscholar.org

sgi.com (Global: low place; English: low place)

threadingbuildingblocks.org (Global: low place; English: low place)

uwo.ca (Global: 5,444th place; English: 3,130th place)

csd.uwo.ca

  • Watt, Stephen M. (September 16, 2006). "A Technique for Generic Iteration and Its Optimization" (PDF). The University of Western Ontario, Department of Computer Science. Retrieved 2012-08-08. Iterators were introduced as constructs to allow looping over abstract data structures without revealing their internal representation.

web.archive.org (Global: 1st place; English: 1st place)

  • "Difference between an external iterator and an internal iterator". CareerRide.COM. 2009-04-03. Archived from the original on 2012-09-19. Retrieved 2012-08-08. An internal iterator is implemented by the member functions of the class which has the iteration logic. An external iterator is implemented by a separate class which can be attached to the object which has iteration logic. The advantage of external iterator is that, many iterators can be made active simultaneously on the existing or same object.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  • Watt, Stephen M. "A Technique for Generic Iteration and Its Optimization". The University of Western Ontario, Department of Computer Science. Archived from the original on 2012-08-06. Retrieved 2012-08-08. Some authors use the term iterator, and others the term generator. Some make subtle distinctions between the two.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  • Vecerina, Ivan (2006-02-01). "index vs iterator". BYTES. Archived from the original on 2012-08-09. Retrieved 2012-08-08. An index only can be used for containers that (efficiently) support random access (i.e. direct access to an element at a given position). An iterator is a more general concept. Iterators offer efficient traversal of linked lists, files, and a number of other data structures. It often leads to the generation of more efficient code.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  • larsmans (2011-03-06). "Types of iterator: Output vs. input vs. forward vs. random access iterator". stackoverflow. Archived from the original on 2012-08-08. Retrieved 2012-08-09.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  • Collier, Andrew. "Iterators in R". Archived from the original on 18 October 2018. Retrieved 16 November 2013.
  • "concurrent_unordered_set Template Class". Intel Threading Building Blocks for Open Source. Archived from the original on 2015-05-01. Retrieved 2012-08-09. •The iterator types iterator and const_iterator are of the forward iterator category