Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Exponential tree

From Wikipedia, the free encyclopedia
This article includes alist of references,related reading, orexternal links,but its sources remain unclear because it lacksinline citations. Please helpimprove this article byintroducing more precise citations.(March 2021) (Learn how and when to remove this message)
Exponential tree
Typetree
Invented1995
Invented byArne Andersson
Time complexity inbig O notation
OperationAverageWorst case
SearchO(min(log n, log n/log w+ log log n, log w log log n))O(min(log n, log n/log w+ log log n, log w log log n))
InsertO(min(log n, log n/log w+ log log n, log w log log n))O(min(log n, log n/log w+ log log n, log w log log n))
DeleteO(min(log n, log n/log w+ log log n, log w log log n))O(min(log n, log n/log w+ log log n, log w log log n))
Space complexity
SpaceO(n)O(n)

Anexponential tree is a type ofsearch tree where the number of children of its nodes decreases doubly-exponentially with increasing depth. Values are stored only in the leaf nodes. Each node contains a splitter, a value less than or equal to all values in the subtree which is used during search. Exponential trees use another data structure in inner nodes containing the splitters from children, allowing fast lookup.

Exponential trees achieve optimal asymptotic complexity on some operations. They have mainly theoretical importance.

Tree structure

[edit]

An exponential tree is arooted tree where every node contains a splitter and every leaf node contains a value. The value may be different from the splitter. An exponential tree withn{\displaystyle n} values is defined recursively:

An additional condition is that searching for a value using the splitters must yield the correct node (i.e. the one containing the value). Therefore, if a root of a subtree contains the splitters{\displaystyle s} and its right sibling contains the splitters{\displaystyle s'}, then this subtree can only contain keys in the range[s,s){\displaystyle [s,s')}.

Local data structure

[edit]

The tree uses a static data structure in every inner node to allow fast lookup of values. It must be possible to build this structure withd{\displaystyle d} values in timeO(dk1){\displaystyle O(d^{k-1})}. The lookup time in this structure is denotedS(d){\displaystyle S(d)}.

AFusion tree can be used as this data structure.

Operations

[edit]

Search

[edit]

The exponential tree can be searched in the same way as a normal search tree. In each node, the local data structure can be used to find the next child quickly.

LetT(n){\displaystyle T(n)} denote the time complexity of the search. Then it satisfies the following recurrence:

T(n)T(n11/k)+O(S(n)){\displaystyle T(n)\leq T(n^{1-1/k})+O(S(n))}

Insert

[edit]

Delete

[edit]

References

[edit]
Search trees
(dynamic sets/associative arrays)
Heaps
Tries
Spatial data partitioning trees
Other trees


Stub icon

Thisalgorithms ordata structures-related article is astub. You can help Wikipedia byexpanding it.

Retrieved from "https://en.wikipedia.org/w/index.php?title=Exponential_tree&oldid=1235460973"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp