aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/doc/src/gb_trees.xml
blob: 5d1f27c0146ce9762dc54d22d201166b491e7451 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>2001</year><year>2015</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at
 
          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.

    </legalnotice>

    <title>gb_trees</title>
    <prepared></prepared>
    <docno></docno>
    <date></date>
    <rev></rev>
  </header>
  <module>gb_trees</module>
  <modulesummary>General Balanced Trees</modulesummary>
  <description>
    <p>An efficient implementation of Prof. Arne Andersson's General
      Balanced Trees. These have no storage overhead compared to
      unbalanced binary trees, and their performance is in general
      better than AVL trees.</p>
    <p>This module considers two keys as different if and only if
      they do not compare equal (<c>==</c>).</p>
  </description>

  <section>
    <title>Data structure</title>
    <p>Data structure:</p>
    <code type="none">
      
- {Size, Tree}, where `Tree' is composed of nodes of the form:
  - {Key, Value, Smaller, Bigger}, and the "empty tree" node:
  - nil.</code>
    <p>There is no attempt to balance trees after deletions. Since
      deletions do not increase the height of a tree, this should be OK.</p>
    <p>Original balance condition <em>h(T) &lt;= ceil(c * log(|T|))</em>
      has been changed to the similar (but not quite equivalent)
      condition <em>2 ^ h(T) &lt;= |T| ^ c</em>. This should also be OK.</p>
    <p>Performance is comparable to the AVL trees in the Erlang book
      (and faster in general due to less overhead); the difference is
      that deletion works for these trees, but not for the book's
      trees. Behaviour is logarithmic (as it should be).</p>
  </section>

  <datatypes>
    <datatype>
      <name name="tree" n_vars="2"/>
      <desc><p>A GB tree.</p></desc>
    </datatype>
    <datatype>
      <name name="tree" n_vars="0"/>
    </datatype>
    <datatype>
      <name name="iter" n_vars="2"/>
      <desc><p>A GB tree iterator.</p></desc>
    </datatype>
    <datatype>
      <name name="iter" n_vars="0"/>
    </datatype>
  </datatypes>
  <funcs>
    <func>
      <name name="balance" arity="1"/>
      <fsummary>Rebalance a tree</fsummary>
      <desc>
        <p>Rebalances <c><anno>Tree1</anno></c>. Note that this is rarely necessary,
          but may be motivated when a large number of nodes have been
          deleted from the tree without further insertions. Rebalancing
          could then be forced in order to minimise lookup times, since
          deletion only does not rebalance the tree.</p>
      </desc>
    </func>
    <func>
      <name name="delete" arity="2"/>
      <fsummary>Remove a node from a tree</fsummary>
      <desc>
        <p>Removes the node with key <c><anno>Key</anno></c> from <c><anno>Tree1</anno></c>;
          returns new tree. Assumes that the key is present in the tree,
          crashes otherwise.</p>
      </desc>
    </func>
    <func>
      <name name="delete_any" arity="2"/>
      <fsummary>Remove a (possibly non-existing) node from a tree</fsummary>
      <desc>
        <p>Removes the node with key <c><anno>Key</anno></c> from <c><anno>Tree1</anno></c> if
          the key is present in the tree, otherwise does nothing;
          returns new tree.</p>
      </desc>
    </func>
    <func>
      <name name="empty" arity="0"/>
      <fsummary>Return an empty tree</fsummary>
      <desc>
        <p>Returns a new empty tree</p>
      </desc>
    </func>
    <func>
      <name name="enter" arity="3"/>
      <fsummary>Insert or update key with value in a tree</fsummary>
      <desc>
        <p>Inserts <c><anno>Key</anno></c> with value <c><anno>Value</anno></c> into <c><anno>Tree1</anno></c> if
          the key is not present in the tree, otherwise updates
          <c><anno>Key</anno></c> to value <c><anno>Value</anno></c> in <c><anno>Tree1</anno></c>. Returns the
          new tree.</p>
      </desc>
    </func>
    <func>
      <name name="from_orddict" arity="1"/>
      <fsummary>Make a tree from an orddict</fsummary>
      <desc>
        <p>Turns an ordered list <c><anno>List</anno></c> of key-value tuples into a
          tree. The list must not contain duplicate keys.</p>
      </desc>
    </func>
    <func>
      <name name="get" arity="2"/>
      <fsummary>Look up a key in a tree, if present</fsummary>
      <desc>
        <p>Retrieves the value stored with <c><anno>Key</anno></c> in <c><anno>Tree</anno></c>.
          Assumes that the key is present in the tree, crashes
          otherwise.</p>
      </desc>
    </func>
    <func>
      <name name="insert" arity="3"/>
      <fsummary>Insert a new key and value in a tree</fsummary>
      <desc>
        <p>Inserts <c><anno>Key</anno></c> with value <c><anno>Value</anno></c> into <c><anno>Tree1</anno></c>;
          returns the new tree. Assumes that the key is not present in
          the tree, crashes otherwise.</p>
      </desc>
    </func>
    <func>
      <name name="is_defined" arity="2"/>
      <fsummary>Test for membership of a tree</fsummary>
      <desc>
        <p>Returns <c>true</c> if <c><anno>Key</anno></c> is present in <c><anno>Tree</anno></c>,
          otherwise <c>false</c>.</p>
      </desc>
    </func>
    <func>
      <name name="is_empty" arity="1"/>
      <fsummary>Test for empty tree</fsummary>
      <desc>
        <p>Returns <c>true</c> if <c><anno>Tree</anno></c> is an empty tree, and
          <c>false</c> otherwise.</p>
      </desc>
    </func>
    <func>
      <name name="iterator" arity="1"/>
      <fsummary>Return an iterator for a tree</fsummary>
      <desc>
        <p>Returns an iterator that can be used for traversing the
          entries of <c><anno>Tree</anno></c>; see <c>next/1</c>. The implementation
          of this is very efficient; traversing the whole tree using
          <c>next/1</c> is only slightly slower than getting the list
          of all elements using <c>to_list/1</c> and traversing that.
          The main advantage of the iterator approach is that it does
          not require the complete list of all elements to be built in
          memory at one time.</p>
      </desc>
    </func>
    <func>
      <name name="iterator_from" arity="2"/>
      <fsummary>Return an iterator for a tree starting from specified key</fsummary>
      <desc>
        <p>Returns an iterator that can be used for traversing the
            entries of <c><anno>Tree</anno></c>; see <c>next/1</c>.
            The difference as compared to the iterator returned by
            <c>iterator/1</c> is that the first key greater than
            or equal to <c><anno>Key</anno></c> is returned.</p>
      </desc>
    </func>
    <func>
      <name name="keys" arity="1"/>
      <fsummary>Return a list of the keys in a tree</fsummary>
      <desc>
        <p>Returns the keys in <c><anno>Tree</anno></c> as an ordered list.</p>
      </desc>
    </func>
    <func>
      <name name="largest" arity="1"/>
      <fsummary>Return largest key and value</fsummary>
      <desc>
        <p>Returns <c>{<anno>Key</anno>, <anno>Value</anno>}</c>, where <c><anno>Key</anno></c> is the largest
          key in <c><anno>Tree</anno></c>, and <c><anno>Value</anno></c> is the value associated
          with this key. Assumes that the tree is nonempty.</p>
      </desc>
    </func>
    <func>
      <name name="lookup" arity="2"/>
      <fsummary>Look up a key in a tree</fsummary>
      <desc>
        <p>Looks up <c><anno>Key</anno></c> in <c><anno>Tree</anno></c>; returns
          <c>{value, <anno>Value</anno>}</c>, or <c>none</c> if <c><anno>Key</anno></c> is not
          present.</p>
      </desc>
    </func>
    <func>
      <name name="map" arity="2"/>
      <fsummary>Return largest key and value</fsummary>
         <desc><p>Maps the function F(<anno>K</anno>, <anno>V1</anno>) -> <anno>V2</anno> to all key-value pairs
	    of the tree <c><anno>Tree1</anno></c> and returns a new tree <c><anno>Tree2</anno></c> with the same set of keys
	    as <c><anno>Tree1</anno></c> and the new set of values <c><anno>V2</anno></c>.</p>
         </desc>
    </func>
    <func>
      <name name="next" arity="1"/>
      <fsummary>Traverse a tree with an iterator</fsummary>
      <desc>
        <p>Returns <c>{<anno>Key</anno>, <anno>Value</anno>, <anno>Iter2</anno>}</c> where <c><anno>Key</anno></c> is the
          smallest key referred to by the iterator <c><anno>Iter1</anno></c>, and
          <c><anno>Iter2</anno></c> is the new iterator to be used for
          traversing the remaining nodes, or the atom <c>none</c> if no
          nodes remain.</p>
      </desc>
    </func>
    <func>
      <name name="size" arity="1"/>
      <fsummary>Return the number of nodes in a tree</fsummary>
      <desc>
        <p>Returns the number of nodes in <c><anno>Tree</anno></c>.</p>
      </desc>
    </func>
    <func>
      <name name="smallest" arity="1"/>
      <fsummary>Return smallest key and value</fsummary>
      <desc>
        <p>Returns <c>{<anno>Key</anno>, <anno>Value</anno>}</c>, where <c><anno>Key</anno></c> is the smallest
          key in <c><anno>Tree</anno></c>, and <c><anno>Value</anno></c> is the value associated
          with this key. Assumes that the tree is nonempty.</p>
      </desc>
    </func>
    <func>
      <name name="take_largest" arity="1"/>
      <fsummary>Extract largest key and value</fsummary>
      <desc>
        <p>Returns <c>{<anno>Key</anno>, <anno>Value</anno>, <anno>Tree2</anno>}</c>, where <c><anno>Key</anno></c> is the
          largest key in <c><anno>Tree1</anno></c>, <c><anno>Value</anno></c> is the value
          associated with this key, and <c><anno>Tree2</anno></c> is this tree with
          the corresponding node deleted. Assumes that the tree is
          nonempty.</p>
      </desc>
    </func>
    <func>
      <name name="take_smallest" arity="1"/>
      <fsummary>Extract smallest key and value</fsummary>
      <desc>
        <p>Returns <c>{<anno>Key</anno>, <anno>Value</anno>, <anno>Tree2</anno>}</c>, where <c><anno>Key</anno></c> is the
          smallest key in <c><anno>Tree1</anno></c>, <c><anno>Value</anno></c> is the value
          associated with this key, and <c><anno>Tree2</anno></c> is this tree with
          the corresponding node deleted. Assumes that the tree is
          nonempty.</p>
      </desc>
    </func>
    <func>
      <name name="to_list" arity="1"/>
      <fsummary>Convert a tree into a list</fsummary>
      <desc>
        <p>Converts a tree into an ordered list of key-value tuples.</p>
      </desc>
    </func>
    <func>
      <name name="update" arity="3"/>
      <fsummary>Update a key to new value in a tree</fsummary>
      <desc>
        <p>Updates <c><anno>Key</anno></c> to value <c><anno>Value</anno></c> in <c><anno>Tree1</anno></c>;
          returns the new tree. Assumes that the key is present in the
          tree.</p>
      </desc>
    </func>
    <func>
      <name name="values" arity="1"/>
      <fsummary>Return a list of the values in a tree</fsummary>
      <desc>
        <p>Returns the values in <c><anno>Tree</anno></c> as an ordered list, sorted
          by their corresponding keys. Duplicates are not removed.</p>
      </desc>
    </func>
  </funcs>

  <section>
    <title>SEE ALSO</title>
    <p><seealso marker="gb_sets">gb_sets(3)</seealso>, 
      <seealso marker="dict">dict(3)</seealso></p>
  </section>
</erlref>