par Demaine, Erik D. ;Langerman, Stefan ;Price, Eric
Référence Algorithmica, 57, 3, page (462-483)
Publication Publié, 2010-07
Article révisé par les pairs
Résumé : We consider a data-structural problem motivated by version control of a hierarchical directory structure in a system like Subversion. The model is that directories and files can be moved and copied between two arbitrary versions in addition to being added or removed in an arbitrary version. Equivalently, we wish to maintain a confluently persistent trie (where internal nodes represent directories, leaves represent files, and edge labels represent path names), subject to copying a subtree between two arbitrary versions, adding a new child to an existing node, and deleting an existing subtree in an arbitrary version. Our first data structure represents an n-node degree-Δ trie with O(1) "fingers" in each version while supporting finger movement (navigation) and modifications near the fingers (including subtree copy) in O(lgΔ) time and space per operation. This data structure is essentially a locality-sensitive version of the standard practice-path copying-costing O(dlgΔ) time and space for modification of a node at depth d, which is expensive when performing many deep but nearby updates. Our second data structure supporting finger movement in O(lgΔ) time and no space, while modifications take O(lgn) time and space. This data structure is substantially faster for deep updates, i.e., unbalanced tries. Both of these data structures are functional, which is a stronger property than confluent persistence. Without this stronger property, we show how both data structures can be sped up to support movement in O(lglgΔ), which is essentially optimal. Along the way, we present a general technique for global rebuilding of fully persistent data structures, which is nontrivial because amortization and persistence do not usually mix. In particular, this technique improves the best previous result for fully persistent arrays and obtains the first efficient fully persistent hash table. © 2009 authors.