EP0497543A2 - Méthode augmentée de recherche et de gestion à liste à double chaînage pour un système ayant des données mémorisées sous forme de liste - Google Patents

Méthode augmentée de recherche et de gestion à liste à double chaînage pour un système ayant des données mémorisées sous forme de liste Download PDF

Info

Publication number
EP0497543A2
EP0497543A2 EP92300700A EP92300700A EP0497543A2 EP 0497543 A2 EP0497543 A2 EP 0497543A2 EP 92300700 A EP92300700 A EP 92300700A EP 92300700 A EP92300700 A EP 92300700A EP 0497543 A2 EP0497543 A2 EP 0497543A2
Authority
EP
European Patent Office
Prior art keywords
list
data elements
doubly
array
linked list
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Withdrawn
Application number
EP92300700A
Other languages
German (de)
English (en)
Other versions
EP0497543A3 (en
Inventor
James Arthur Porter, Jr.
Donald E. Matthews
Dennis Eugene Haugh
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Digital Equipment Corp
Original Assignee
Digital Equipment Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Digital Equipment Corp filed Critical Digital Equipment Corp
Publication of EP0497543A2 publication Critical patent/EP0497543A2/fr
Publication of EP0497543A3 publication Critical patent/EP0497543A3/en
Withdrawn legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/901Indexing; Data structures therefor; Storage structures
    • G06F16/9024Graphs; Linked lists
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99931Database or file accessing
    • Y10S707/99933Query processing, i.e. searching

Definitions

  • This present invention is related to storing data on a digital computer, and in particular, to an improved method of managing and searching medium amounts of data.
  • a search method is a method that accepts an argument a and tries to find a record whose key is a .
  • the method may return the entire record or, more commonly, it may return a pointer to that record. It is possible that the search for a particular argument in a table is unsuccessful; that is, there is no record in the table with that argument as its key. In such a case, the method may return a special "nil record" or a nil pointer. Very often, if a search is unsuccessful, it may be desirable to add a new record with an argument as its key. A method that does this is called a search and insertion method. A successful search is often called a retrieval.
  • search is applicable to a table that is organized either as an array or as a linked list.
  • a sequential search method would examine each key in turn, and upon finding one that matches the search argument, its index (which as a pointer to its record) is returned. If no match is found, 0 is returned.
  • the number of comparisons depends on where the record in the argument key appears in the table. If the record is the first one in the table, only one comparison is performed; if the record is the last one in the table, n comparisons are necessary. If it is equally likely for an argument to appear at any given table position, a successful search will take (on the average) ( n +1)/2 comparisons, and an unsuccessful search will take n comparisons. In any case, the number of comparisons is O(n), that is, a function of n , the size of the table or list.
  • the most efficient method of searching a sequential list without the use of auxiliary indices or lists is a binary search.
  • the problem is trivial. Otherwise, compare the item being searched for with the item at the middle of the array (or list). If they are equal, the search has been completed successfully. If the middle element is greater than the item being searched for, the search process is repeated in the first half of the array (since if the item appears anywhere, it must appear in the first half); otherwise, the process is repeated in the second half. Note that each time a comparison is made, the number of elements yet to be searched is cut in half.
  • this method is superior to the sequential search, in which each comparison reduces the number of elements yet to be searched by only one.
  • Each comparison in a binary search reduces the number of possible candidates by a factor of 2.
  • the maximum number of key comparisons that will be made is approximately log(2) n .
  • the binary search method can only be used if the list is stored as an array. This is because it makes use of the fact that the indices of array elements are consecutive integers. For this reason, in the past, the binary search has been found to be useless in situations where there are many insertions or deletions, so that an array structure is inappropriate.
  • Additional methods for searching and managing lists of elements include 3-2 tree searching methods, B-tree of order m searching methods, Balanced Binary Tree searching methods, and various other methods that are typically found in college level data structures text books, such as A. Tenenbaum & M.Augenstein, Data Structures Using Pascal (Prentice-Hall 1981).
  • a 3-2 tree is one which each node has two or three sons and contains either one or two keys. If a node has two sons, it contains one key. All keys in its left subtree are less than that key and all keys in its right subtree are greater than that key. If a node has three sons, it contains two keys. All keys in its left subtree are less than its left key, which is less than all keys in its middle subtree. All keys in its middle subtree are less than its right key, which is less than all keys in its right subtree.
  • a B-tree of order m is a generalization of the 3-2 trees.
  • Such a tree is defined as a general tree that satisfies the following properties:
  • a Balanced Binary Tree is a binary tree in which the heights of the two subtrees of every node never differ by more than one.
  • the balance of a node in a binary tree is defined as the height of its left subtree minus the height of its right subtree. Node deletion is not covered within the Balanced Binary Tree method, and must be done using other techniques.
  • a detailed treatment of Balanced Binary Trees may be found in any of several college-level textbooks on data structures, as mentioned previously.
  • the Balanced Binary Tree techniques while academically elegant, may be viewed as being more complex and may incur much more compute overhead for tree node deletions.
  • cached controllers are expected to be dynamically deleting as well as adding cache index entries to their cache data structures. This extra overhead needed for deletions (a non-deterministic amount of processing requirements) does not fair well in a storage controller with real-time constraints.
  • An array is created in memory and initialized to contain no components.
  • a group of ordered elements is set up using a doubly-linked list.
  • the doubly-linked list is grouped into list segments.
  • the address component of the initial member of each list segment is placed in the array.
  • the relationship between the number of data elements and the corresponding number of list segments with their corresponding address components is dynamic in that the groupings of list segments may change in response to the addition or deletion of data elements.
  • Search time is minimized in that in looking for any one data element, the number of steps required in sequentially searching the data element list is reduced to beginning at the first component of a list segment. Initiating a search involves a binary search on the array of address components, and then entry into the doubly-linked list at the start of the corresponding list segment. Additional objects and advantages of the invention will become clear from the following description.
  • the present invention provides a system having data stored in a list of ordered data elements in memory, a method of searching and maintaining the data in memory comprising the steps of:
  • the step of dynamically grouping the ordered data elements in the doubly-linked list into list segments includes the steps of:
  • the present invention further provides a system having data stored in a list of ordered data elements in memory, a method of searching and maintaining the data in memory comprising the steps of:
  • the step of dynamically realigning the number of ordered data elements within a list segment may include the steps of:
  • step of dynamically realigning the number of data elements within a list segment may include the steps of:
  • the present invention further provides a system having data stored in a list of ordered data elements in memory, a method of searching and maintaining the data in memory comprising the steps of:
  • the invention has characteristics of arrays and doubly-linked lists. Since it is a doubly-linked list augmented with an array, the technique of this invention has been termed Augmented Doubly-Linked list, or ADL list.
  • the augmented doubly-linked list ( ADL list ) search and management method comprises an array of address components 10 providing a plurality of entry points 14 into a doubly-linked list of data elements 12.
  • the doubly-linked list of data elements 12 is divided into a plurality of list segments 16 . Any number of data elements 17 can be associated with address components 18 , as will be described below beginning with Fig. 3 . Furthermore, it is shown below that several dynamic events occur during the addition or deletion of a data element 17. As the number of data elements 17 change in the doubly-linked list 12 , the number of list segments 16 may change. If there is a change in the number data elements within the list segments 16 , then the address components 18 will change in response, thereby changing the entry points 14 that are required to access the first data element of each list segment 16.
  • a linked list is the simplest type of dynamic data structure. It provides a solution to the problem of maintaining a list to which components may be added or deleted at random.
  • a list that has backward as well as forward pointers is called a doubly-linked list 18 . It makes additions and deletions efficiently, but it is time consuming if the entire list needs to be traversed in order to effect a change in the total number of data elements.
  • Linked structures like the doubly-linked list 12 , usually have several pointers associated with them. These pointers act as place markers, maintaining contact with the beginning of a list, its end, the current position, etc.
  • Fig. 2 is a flow diagram illustrating the manner in which a typical search of the ADL list is accomplished.
  • a search is initiated 20 and a binary search 22 is applied to the array of address components 18 .
  • the search is narrowed down to one list segment 16 of the doubly-linked list so that overall seek time is dramatically reduced by eliminating the need to search the entire doubly-linked list.
  • the appropriate list segment 16 may then be linearly traversed 24 to determine if the desired data element 17 is present or not. If the desired data element is not found 30 a new data element will be added to the list 32 . If the desired data element is found 26 the search is complete 28.
  • Fig. 3 specifically represents five data elements 17 , 17a, 17b, 17c, 17d in the doubly-linked list of data elements 12 associated with two address components 18 and 18a in the array of address components 10.
  • a search for data element 17d would begin by executing a binary search on the array of address components 10 to identify the address component 18a .
  • Address component 18a would provide the entry point 14a into the list segment 16a , specifically into data element 17b .
  • Linear traversal of the list segment 16a would begin from data element 17b , through data element 17c , until the desired list element 17d was encountered.
  • Fig. 3 represents a snapshot of the ever changing ADL list structure.
  • the ADL list structure changes in response; a change in the total number of data elements 17 produces a potential change in the number of list segments 16 , the number of data elements in any given list segment, and a corresponding change in the number of address components 18 in the ordered array 10 .
  • Fig. 3 illustrates how the ADL list accomplishes both the binary searching of an array and the minimization of sequential searching on a doubly-linked list by having only the address component of the first data element of each list segment placed in the ordered array 10 . More specifically in Fig. 3 , the address component 18 in the ordered array 10 provides entry into the first data element 17 of list segment 16 , and the address component 18a in the ordered array 10 provides entry into the first data element 17b of list segment 16a .
  • Fig. 4 is a flow diagram illustrating the manner in which the ADL list manages that data element list to minimize seek time of any one data element.
  • data elements need to be dynamically added to the list 48 and data elements need to be dynamically deleted or removed from the list 46.
  • the integer value of the total number of data elements is determined 44 .
  • This value 44 which is a whole number, is compared with the current number of doubly-linked list segments that are present, identified as check threshold alignment 50 , to determine whether a new dynamic regrouping needs to be applied 54 or not 52 . Ideal balancing occurs when the total number of data elements are associated into equal groupings.
  • FIG. 5 An example of how the addition of data elements affects the dynamic groupings of list segments in the ADL list can be viewed in following the changes in the overall ADL list structure in Figs. 5, 6, 7, 8, 9, and 10 .
  • Fig. 5 four data elements 17, 17a, 17b, 17c are grouped into two list segments 16 and 16a .
  • the array of address components 10 is populated with two address components 18 and 18a , providing two list entry points 14 and 14a into list data elements 17 and 17b , the initial members of list segments 16a and 16a , respectively.
  • the integer value of the square root of the number of data elements, in this case, four data elements, is again 2. This provides the number of array elements, i.e. address components 18 , necessary to correspond to the required number of list segments 16 .
  • List segment 16 contains data elements 17 and 17a .
  • List segment 16a contains data elements 17b and 17c .
  • Fig. 6 includes five data elements 17, 17a, 17b, 17c, 17d, grouped into two list segments 16 and 16a .
  • the array 10 of address components is populated with two address components 18 and 18a , providing two list entry points 14 and 14a into list data elements 17 and 17b , the initial members of list segments 16 and 16a , respectively.
  • the integer value of the square root of the number of data elements, in this case, five data elements, is still 2. This provides the number of array elements necessary to correspond to the required number of list segments.
  • List segment 16 contains data elements 17 and 17a.
  • List segment 16a contains data elements 17b , 17c and 17d , resulting in a slight imbalance.
  • Fig. 7 includes six data elements 17, 17a, 17b, 17c, 17d, 17e, equally grouped into two list segments 16 and 16a .
  • the array of address components 10 is populated with two address components 18 and 18a , providing two list entry points 14 and 14a into list data elements 17 and 17c , the initial members of list segments 16 and 16a , respectively.
  • the integer value of the square root of the number of data elements, in this case, six data elements, is 2. This provides the number of array elements necessary to correspond to the required number of list segments.
  • List segment 16 contains data elements 17, 17a and 17b.
  • List segment 16a contains data elements 17c, 17d and 17e.
  • Fig. 8 includes seven data elements 17, 17a, 17b, 17c, 17d, 17e, 17f , grouped into two list segments 16 and 16a , again, slightly imbalanced.
  • the array of address components 10 is populated with two address components 18 and 18a , providing two list entry points 14 and 14a into list data elements 17 and 17c , the initial members of list segments 16 and 16a , respectively.
  • the integer value of the square root of the number of data elements, in this case, seven data elements, remains at 2. This provides the number of array elements necessary to correspond to the required number of list segments.
  • List segment 16 contains data elements 17, 17a and 17b .
  • List segment 16a contains data elements 17c, 17d, 17e and 17f .
  • Fig. 9 includes eight data elements 17, 17a, 17b, 17c, 17d, 17e, 17f, 17g , grouped into two equal list segments 16 and 16a .
  • the array of address components 10 is populated with two address components 18 and 18a , providing two list entry points 14 and 14a into list data elements 17 and 17d, the initial members of list segments 16 and 16a , respectively.
  • List segment 16 contains data elements 17, 17a, 17b and 17c.
  • List segment 16a contains data elements 17d, 17e, 17f and 17g .
  • Fig. 10 includes a gross restructuring of nine data elements 17 , 17a, 17b, 17c, 17d, 17e, 17f, 17g, 17h , which are now grouped into three list segments 16, 16a and 16c .
  • the array of address components 10 is populated with three address components 18, 18a and 18b , providing three list entry points 14, 14a and 14b into list data elements 17, 17c and 17f , the initial members of list segments 16, 16a and 16c , respectively.
  • the integer value of the square root of the number of data elements, in this case, nine data elements, has now changed to 3.
  • List segment 16 contains data elements 17, 17a and 17b .
  • List segment 16a contains data elements 17c , 17d and 17e .
  • List segment 16b contains data elements 17f , 17g and 17h .
  • Fig. 11 shows how the next level of gross restructuring occurs at integer value 5, this being at the point when twenty-five data elements are in the doubly-linked list 12 . More particularly, Fig. 11 shows twenty-five data elements 17, 17a, 17b, 17c, 17d, 17e, 17t, 17g, 17h, 17i, 17j, 17k, 17l, 17m, 17n, 17o, 17p, 17q, 17r, 17s, 17t, 17u, 17v, 17w and 17x , grouped into five list segments 16, 16a, 16b, 16c, and 16d .
  • the array of address components 10 is filled with five address components 18, 18a, 18b, 18c and 18d, providing five list entry points 14, 14a, 14b, 14c and 14d into list data elements 17, 17e, 17j, 17o and 17t .
  • List segment 16 contains data elements 17, 17a, 17b, 17c and 17d .
  • List segment 16a contains data elements 17e, 17f, 17g, 17h and 17i .
  • List segment 16b contains data elements 17j, 17k, 17l, 17m and 17n .
  • List segment 16c contains data elements 17o, 17p, 17q, 17r and 17s .
  • List segment 16d contains data elements 17t, 17u, 17v, 17w and 17x .
  • Fig. 12 shows the dynamic relationship between the total number of data elements (horizontal scale 60 ) and the corresponding number of list segments (vertical scale 62 ). More, specifically, the step type graph 64 shows how the ADL list structure changes in response to the addition or deletion of data elements in the doubly-linked list, resulting in a dynamic grouping of the structure to minimize search time.
  • a doubly-linked list of data elements is grouped into smaller list segments by using a simple mathematical relationship. Entry into each list segment is provided by associating an array of address components as a means to access each list segment directly. Search time is minimized by first performing a binary search on the address component array, and only then performing a sequential search of the data elements in the doubly-linked list.
  • the number of list segments and corresponding number od address components in the array is mathematically related to the total number of data elements, and dynamically changes as data elements are added or deleted from the list, with a realignment of the number of data elements in each individual list segment until there is a change in the integer value.

Landscapes

  • Engineering & Computer Science (AREA)
  • Databases & Information Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Software Systems (AREA)
  • Data Mining & Analysis (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
  • Memory System (AREA)
EP9292300700A 1991-01-31 1992-01-28 Augmented doubly-linked list search and management method for a system having stored listed data elements Withdrawn EP0497543A3 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US648079 1984-09-07
US07/648,079 US5263160A (en) 1991-01-31 1991-01-31 Augmented doubly-linked list search and management method for a system having data stored in a list of data elements in memory

Publications (2)

Publication Number Publication Date
EP0497543A2 true EP0497543A2 (fr) 1992-08-05
EP0497543A3 EP0497543A3 (en) 1994-09-14

Family

ID=24599354

Family Applications (1)

Application Number Title Priority Date Filing Date
EP9292300700A Withdrawn EP0497543A3 (en) 1991-01-31 1992-01-28 Augmented doubly-linked list search and management method for a system having stored listed data elements

Country Status (4)

Country Link
US (1) US5263160A (fr)
EP (1) EP0497543A3 (fr)
JP (1) JPH0554076A (fr)
CA (1) CA2060335A1 (fr)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1098249A1 (fr) * 1999-11-05 2001-05-09 Emc Corporation Segmentation d'antémémoire pour fournir des niveaux de services différents
EP1098250A1 (fr) * 1999-11-05 2001-05-09 Emc Corporation Antémémoire ayant plusieurs unités logiques annulaires
GB2345556B (en) * 1999-01-06 2003-06-04 Int Computers Ltd List searching

Families Citing this family (51)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5560006A (en) * 1991-05-15 1996-09-24 Automated Technology Associates, Inc. Entity-relation database
US5530957A (en) * 1992-08-07 1996-06-25 At&T Corp. Storing trees in navigable form
US5410722A (en) * 1993-01-21 1995-04-25 Conner Peripherals, Inc. Queue system for dynamically allocating and moving memory registers between a plurality of pseudo queues
JP3526595B2 (ja) * 1993-10-29 2004-05-17 富士通株式会社 情報管理機構
US5557786A (en) * 1994-01-24 1996-09-17 Advanced Computer Applications, Inc. Threaded, height-balanced binary tree data structure
US5761501A (en) * 1995-10-02 1998-06-02 Digital Equipment Corporation Stacked skip list data structures
US5659739A (en) * 1995-10-02 1997-08-19 Digital Equipment Corporation Skip list data structure enhancements
US5671406A (en) * 1995-10-18 1997-09-23 Digital Equipment Corporation Data structure enhancements for in-place sorting of a singly linked list
US5794243A (en) * 1995-12-11 1998-08-11 International Business Machines Corporation Method and apparatus for executing a binary search in a data cache
US5787445A (en) * 1996-03-07 1998-07-28 Norris Communications Corporation Operating system including improved file management for use in devices utilizing flash memory as main memory
GB2312079B (en) * 1996-04-12 2000-11-15 Sony Uk Ltd Editing of recorded material
US6718550B1 (en) 1996-06-26 2004-04-06 Sun Microsystems, Inc. Method and apparatus for improving the performance of object invocation
US6269369B1 (en) * 1997-11-02 2001-07-31 Amazon.Com Holdings, Inc. Networked personal contact manager
US8380796B2 (en) 1997-11-02 2013-02-19 Amazon Technologies, Inc. Social networking system
US6438616B1 (en) 1997-12-18 2002-08-20 Sun Microsystems, Inc. Method and apparatus for fast, local corba object references
US6510460B1 (en) 1997-12-18 2003-01-21 Sun Microsystems, Inc. Method and apparatus for enforcing locking invariants in multi-threaded systems
US6516354B2 (en) 1997-12-18 2003-02-04 Sun Microsystems, Inc. Method and apparatus for efficient representation of variable length identifiers in a distributed object system
US6016489A (en) * 1997-12-18 2000-01-18 Sun Microsystems, Inc. Method and apparatus for constructing stable iterators in a shared data collection
US6205491B1 (en) 1997-12-18 2001-03-20 Sun Microsystems, Inc. Method and apparatus for deferred throwing of exceptions in C++
US6249803B1 (en) 1997-12-18 2001-06-19 Sun Microsystems, Inc. Method and apparatus for executing code during method invocation
AU5910699A (en) * 1998-09-18 2000-04-10 Tacit Knowledge Systems Method of constructing and displaying an entity profile constructed utilizing input from entities other than the owner
US6493706B1 (en) * 1999-10-26 2002-12-10 Cisco Technology, Inc. Arrangement for enhancing weighted element searches in dynamically balanced trees
JP2001216316A (ja) * 2000-02-02 2001-08-10 Nec Corp 電子マニュアル検索システム、方法、及び記録媒体
US7406547B2 (en) 2000-08-09 2008-07-29 Seagate Technology Llc Sequential vectored buffer management
US6668251B1 (en) * 2000-11-01 2003-12-23 Tacit Knowledge Systems, Inc. Rendering discriminator members from an initial set of result data
GB2386212A (en) 2002-03-09 2003-09-10 Sharp Kk Storing temporally consecutive values in a memory segment that cannot be overwritten using sequential and bridging pointers
US7028023B2 (en) * 2002-09-26 2006-04-11 Lsi Logic Corporation Linked list
US7627585B2 (en) * 2002-12-02 2009-12-01 Sap Ag Data structure mapping and packaging
JPWO2005086003A1 (ja) * 2004-03-08 2008-01-24 アネックスシステムズ株式会社 データベース・システム
US20060129452A1 (en) * 2004-12-15 2006-06-15 Sbc Knowledge Ventures, Lp System and method for utilizing a multifaceted entity profile
US20060136995A1 (en) * 2004-12-21 2006-06-22 Chih-Wei Chen Computer system cluster data access authorization checking method and system
US20060294096A1 (en) * 2005-06-22 2006-12-28 Eastman Kodak Company Additive clustering of images into events using capture date-time information
CN100498740C (zh) * 2007-09-11 2009-06-10 腾讯科技(深圳)有限公司 一种数据缓存处理方法、系统及数据缓存装置
US7844637B2 (en) * 2007-09-14 2010-11-30 International Business Machines Corporation Method for managing keyboard navigation within a tree control structure user interface component via a linked list
EP2374221B1 (fr) 2009-01-05 2019-09-11 Marvell World Trade Ltd. Livres de codes de précodage destinés à des systèmes de communication entrées multiples sorties multiples
US8675794B1 (en) * 2009-10-13 2014-03-18 Marvell International Ltd. Efficient estimation of feedback for modulation and coding scheme (MCS) selection
US8917796B1 (en) 2009-10-19 2014-12-23 Marvell International Ltd. Transmission-mode-aware rate matching in MIMO signal generation
CN102550079B (zh) 2009-11-09 2015-10-21 马维尔国际贸易有限公司 用于经协调的发射系统的非对称反馈
JP5637486B2 (ja) * 2009-12-17 2014-12-10 マーベル ワールド トレード リミテッド 交差偏波アンテナ用のmimoフィードバックスキーム
JP5258002B2 (ja) 2010-02-10 2013-08-07 マーベル ワールド トレード リミテッド Mimo通信システムにおける装置、移動通信端末、チップセット、およびその方法
JP2012100254A (ja) 2010-10-06 2012-05-24 Marvell World Trade Ltd Pucchフィードバックのためのコードブックサブサンプリング
US8954661B2 (en) * 2010-11-02 2015-02-10 Intel Corporation Binary search pipeline
US9048970B1 (en) 2011-01-14 2015-06-02 Marvell International Ltd. Feedback for cooperative multipoint transmission systems
CN103548284B (zh) 2011-03-31 2017-07-21 马维尔国际贸易有限公司 用于协作多点传输的信道反馈
US9020058B2 (en) 2011-11-07 2015-04-28 Marvell World Trade Ltd. Precoding feedback for cross-polarized antennas based on signal-component magnitude difference
WO2013068916A1 (fr) 2011-11-07 2013-05-16 Marvell World Trade Ltd. Sous-échantillonnage de livre de codes en vue d'un retour d'informations portant sur un précodage sélectif en fréquence
WO2013068974A1 (fr) 2011-11-10 2013-05-16 Marvell World Trade Ltd. Codage cqi différentiel pour rétroaction multipoints coopérative
US9220087B1 (en) 2011-12-08 2015-12-22 Marvell International Ltd. Dynamic point selection with combined PUCCH/PUSCH feedback
US8902842B1 (en) 2012-01-11 2014-12-02 Marvell International Ltd Control signaling and resource mapping for coordinated transmission
US9143951B2 (en) 2012-04-27 2015-09-22 Marvell World Trade Ltd. Method and system for coordinated multipoint (CoMP) communication between base-stations and mobile communication terminals
WO2014146024A1 (fr) * 2013-03-15 2014-09-18 Datatempest, Llc Bases de données et procédés de stockage, récupération et traitement de données

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US3829837A (en) * 1971-06-24 1974-08-13 Honeywell Inf Systems Controller for rotational storage device having linked information organization
US5043885A (en) * 1989-08-08 1991-08-27 International Business Machines Corporation Data cache using dynamic frequency based replacement and boundary criteria

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4679139A (en) * 1984-05-01 1987-07-07 Canevari Timber Co., Inc. Method and system for determination of data record order based on keyfield values
US4887260A (en) * 1987-02-17 1989-12-12 Hewlett-Packard Company X.25 Wide area network channel status display
JPH02178730A (ja) * 1988-12-28 1990-07-11 Toshiba Corp 分割法を用いた内部ソート方式

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US3829837A (en) * 1971-06-24 1974-08-13 Honeywell Inf Systems Controller for rotational storage device having linked information organization
US5043885A (en) * 1989-08-08 1991-08-27 International Business Machines Corporation Data cache using dynamic frequency based replacement and boundary criteria

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
IBM TECHNICAL DISCLOSURE BULLETIN, vol.31, no.10, March 1989, NEW YORK US pages 45 - 50 ANON. 'Device Queue Managment' *

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2345556B (en) * 1999-01-06 2003-06-04 Int Computers Ltd List searching
EP1098249A1 (fr) * 1999-11-05 2001-05-09 Emc Corporation Segmentation d'antémémoire pour fournir des niveaux de services différents
EP1098250A1 (fr) * 1999-11-05 2001-05-09 Emc Corporation Antémémoire ayant plusieurs unités logiques annulaires
US6457102B1 (en) 1999-11-05 2002-09-24 Emc Corporation Cache using multiple LRU's
US6728836B1 (en) 1999-11-05 2004-04-27 Emc Corporation Segmenting cache to provide varying service levels

Also Published As

Publication number Publication date
JPH0554076A (ja) 1993-03-05
EP0497543A3 (en) 1994-09-14
US5263160A (en) 1993-11-16
CA2060335A1 (fr) 1992-08-01

Similar Documents

Publication Publication Date Title
US5263160A (en) Augmented doubly-linked list search and management method for a system having data stored in a list of data elements in memory
AU707907B2 (en) Storage and retrieval of ordered sets of keys in a compact 0-complete tree
US5852826A (en) Parallel merge sort method and apparatus
Willard New trie data structures which support very fast search operations
US6411957B1 (en) System and method of organizing nodes within a tree structure
Bayer et al. Organization and maintenance of large ordered indices
US5487164A (en) Distribution-based replacement selection sorting system
US5752243A (en) Computer method and storage structure for storing and accessing multidimensional data
US6427147B1 (en) Deletion of ordered sets of keys in a compact O-complete tree
US5687361A (en) System for managing and accessing a dynamically expanding computer database
WO1993014464A1 (fr) Echantillonnage aleatoire simple de structure de donnees pseudohierarchique dans un systeme de traitement de donnees
US7096235B2 (en) Computer implemented compact 0-complete tree dynamic storage structure and method of processing stored data
US20070094313A1 (en) Architecture and method for efficient bulk loading of a PATRICIA trie
Litwin et al. A new method for fast data searches with keys
Lee et al. A Partitioned Signature File Structure for Multiattribute and Text Retrieval.
US6076089A (en) Computer system for retrieval of information
US20200301903A1 (en) Reorganization of Databases by Sectioning
WO2001025962A1 (fr) Organisation de base de donnees permettant d'augmenter les performances par la division de tables
Morin Hash tables
Comer English dictionary searching with little extra space
EP0111689A2 (fr) Procédé d'enregistrement d'un fichier d'index de type arbre B sur des dispositifs à support rotatif
Orlandic et al. Analysis of compact 0-complete trees: A new access method to large databases
Boswell et al. Alternatives to the B+-tree
Orlandic et al. Compact 0-complete trees: a new method for searching large files
Manolopoulos et al. Performance of linear hashing schemes for primary key retrieval

Legal Events

Date Code Title Description
PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

AK Designated contracting states

Kind code of ref document: A2

Designated state(s): DE FR GB NL

17P Request for examination filed

Effective date: 19921102

PUAL Search report despatched

Free format text: ORIGINAL CODE: 0009013

AK Designated contracting states

Kind code of ref document: A3

Designated state(s): DE FR GB NL

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: THE APPLICATION IS DEEMED TO BE WITHDRAWN

18D Application deemed to be withdrawn

Effective date: 19940802