One-pass algorithm: Difference between revisions

Content deleted Content added
Dmh~enwiki (talk | contribs)
m Stub. There doesn't seem to be an entry for this.
m Tidied, also added link to big O notation as not all readers will have come across it. Lowercase N seems to be more standard than uppercase, but perhaps this is stylistic rather than anything.
Line 1:
In computing, a '''Oneone-pass algorithm''' is one which reads its input exactly once, in order, without [[Buffer|buffering]]. A one-pass algorithm generally requires O(Nn) (see [[Big O Notation|'big O' notation]]) time and less than O(Nn) storage (typically O(1)), where Nn is the size of the input.
 
{{stub}}