(computer science) A process that involves reading or writing data serially and, by extension, a data-recording medium that must be read serially, as a magnetic tape.
| Sci-Tech Dictionary: sequential access |
(computer science) A process that involves reading or writing data serially and, by extension, a data-recording medium that must be read serially, as a magnetic tape.
| 5min Related Video: Sequential access |
| Business Dictionary: Sequential Access |
Electronic storing of records based upon some sequence determination, such as alphabetic or numeric order. Direct access file processing requires a direct access device such as a magnetic disk unit, where retrieval time can be in milliseconds as compared to several seconds or even minutes in a sequential file utilizing a tape unit. A majority of today's computerized information systems that use the direct access method also use sequential processing for some portion of the processing activities in the same information system.
| Wikipedia: Sequential access |
|
|
This article does not cite any references or sources. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed. (October 2007) |
In computer science, sequential access means that a group of elements (e.g. data in a memory array or a disk file or on a tape) is accessed in a predetermined, ordered sequence. Sequential access is sometimes the only way of accessing the data, for example if it is on a tape. It may also be the access method of choice, for example if we simply want to process a sequence of data elements in order.
In data structures, a data structure is said to have sequential access if one can only visit the values it contains in one particular order. The canonical example is the linked list. Indexing into a list which has sequential access requires O(k) time, where k is the index. As a result, many algorithms such as quicksort and binary search degenerate into bad algorithms that are even less efficient than their naïve alternatives; these algorithms are impractical without random access. On the other hand, some algorithms, typically those which don't perform indexing, require only sequential access, such as mergesort, and so face no penalty.
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)
| sequential access storage device (technology) | |
| GSAM (technology) | |
| B-tree (technology) |
| Why is sequential access slower than direct access? | |
| Compare and contrast dircet access and sequential access storage devices? | |
| What is the difference between random access and sequential access? |
Copyrights:
![]() | Sci-Tech Dictionary. McGraw-Hill Dictionary of Scientific and Technical Terms. Copyright © 2003, 1994, 1989, 1984, 1978, 1976, 1974 by McGraw-Hill Companies, Inc. All rights reserved. Read more | |
![]() | Business Dictionary. Dictionary of Business Terms. Copyright © 2000 by Barron's Educational Series, Inc. All rights reserved. Read more | |
![]() | Wikipedia. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article "Sequential access". Read more |
Mentioned in