Search Images Maps Play YouTube News Gmail Drive More »
Advanced Patent Search | Web History | Sign in

Patents

A computerized list is provided with auxiliary pointers for traversing the list in different sequences. One or more auxiliary pointers enable a fast, sequential traversal of the list with a minimum of computational time. Such lists may be used in any application where lists may be reordered for various purposes.

InventorMing-Jen Wang
Original AssigneeLSI Logic Corporation
Primary Examiner: John Breene
Secondary Examiner: Cheryl Lewis
Attorney: Cochran Freund & Young LLP
Current U.S. Classification1/1; 707/999.002; 707/999.1; 707/E17.011

View patent at USPTO
Search USPTO Assignment Database

Citations

Cited PatentFiling dateIssue dateOriginal AssigneeTitle
US5263160Jan 31, 1991Nov 16, 1993Digital Equipment CorporationAugmented doubly-linked list search and management method for a system having data stored in a list of data elements in memory
US5446889Jul 21, 1994Aug 29, 1995Unisys CorporationComputer-based methods for determining the head of a linked list
US5644784Mar 3, 1995Jul 1, 1997Intel CorporationLinear list based DMA control structure
US5671406Oct 18, 1995Sep 23, 1997Digital Equipment CorporationData structure enhancements for in-place sorting of a singly linked list
US5893162Feb 5, 1997Apr 6, 1999TranSwitch Corp.Method and apparatus for allocation and management of shared memory with data in memory stored as multiple linked lists
US5905990Jun 23, 1997May 18, 1999International Business Machines CorporationFile system viewpath mechanism
US5950191May 21, 1997Sep 7, 1999Oracle CorporationMethod and system for accessing an item in a linked list using an auxiliary array
US6301646Jul 30, 1999Oct 9, 2001Curl CorporationPointer verification system and method
US6321219Aug 14, 1998Nov 20, 2001Microsoft CorporationDynamic symbolic links for computer file systems
US6499083Sep 15, 1999Dec 24, 2002Western Digital Ventures, Inc.DISK-BASED STORAGE SYSTEM RESPONSIVE TO A DIRECTION-SELECTION SIGNAL FOR AUTONOMOUSLY CONTROLLING SEEKS IN A SEQUENCE DETERMINED BY THE DIRECTION-SELECTION SIGNAL AND A LOCALLY-STORED DOUBLY LINKED LIST
US6581063Jun 15, 2000Jun 17, 2003International Business Machines CorporationMethod and apparatus for maintaining a linked list
US6687699Sep 15, 2000Feb 3, 2004Hewlett-Packard Development Company, L.P.System and method for tracking computer data
US6760726Jun 19, 2001Jul 6, 2004ANTs SoftwareSystem and method of managing concurrent operations on linked lists

Referenced by

Citing PatentFiling dateIssue dateOriginal AssigneeTitle
US7213244Mar 13, 2003May 1, 2007International Business Machines CorporationApparatus and method for distribution of work on a doubly linked list among processing threads
US7464087Jul 28, 2003Dec 9, 2008Datatrak International, Inc.Method and system of unifying data
US8234294Nov 21, 2008Jul 31, 2012Datatrak International, Inc.Method and system of unifying data

Claims

1. A computerized list that may be traversed in at least two sequences comprising:

a plurality of items that are contained in said computerized list; and

a primary pointer and an auxiliary pointer for each of said items of said computerized list such that each of said items has an associated primary pointer and an associated auxiliary pointer, said primary pointer functioning as a primary linked list to direct a computer program to a first following item and defining a first sequence to traverse said computerized list, said auxiliary pointer functioning as an auxiliary linked list to direct said computer program to a second following item and defining a second sequence to traverse said computerized list.

2. The computerized list of claim 1 further comprising

a tertiary pointer for each of said items of said computerized list such that each of said items has an associated tertiary pointer, said tertiary pointer functioning as a tertiary linked list to direct said computer program to a third following item and defining a third sequence to traverse said computerized list.

3. A method of traversing a computerized list having at least two sequential pointers comprising:

providing said computerized list to be traversed, said computerized list comprising a plurality of items;

providing at least a primary pointer and a secondary pointer for each of said items of said computerized list such that each of said items has associated primary pointer and an associated auxiliary pointer, said primary pointer functioning as a primary linked list to point to a first sequential item and defining a first sequence to traverse said computerized list, said secondary pointer functioning as an auxiliary linked list to point to a second sequential item and defining a second sequence to traverse said computerized list;

using said second sequence to traverse said computerized list by designating a starting item to traverse said computerized list from said items of said computerized list and initially setting a current item to said starting item;

performing a traversal operation, said traversal operation comprising:
performing an operation on said current item; and
traversing said computerized list to a new item indicated by said secondary pointer by setting said current item to said new item; and
repeating said traversal operation until said second sequence is ended.

4. A computer system capable of traversing a list having at least two sequential pointers comprising:

a plurality of items that are contained in said list to be traversed;

at least a primary pointer and a secondary pointer for each of said items of said list such that each of said items has an associated primary pointer and an associated secondary pointer, said primary pointer functioning as a primary linked list to point to a first sequential item and defining a first sequence to traverse said list, said secondary pointer functioning as a secondary linked list to point to a second sequential item and defining a second sequence to traverse said list; and

a computer program that uses said second sequence to traverse said list.