Share on Facebook Share on Twitter Email
Answers.com

Sequential access

 
Sci-Tech Dictionary: sequential access
(si′kwen·chəl ′ak′ses)

(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.


Search unanswered questions...
Enter a question here...
Search: All sources Community Q&A Reference topics
Business Dictionary: Sequential Access
Top

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
Top
Sequential access compared to random access.

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.

See also


 
 

 

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