2 * Copyright (C) 2010 Joseph Adams <joeyadams3.14159@gmail.com>
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 #include "smatch_slist.h"
29 static AvlNode
*mkNode(const struct sm_state
*sm
);
30 static void freeNode(AvlNode
*node
);
32 static AvlNode
*lookup(const AVL
*avl
, AvlNode
*node
, const struct sm_state
*sm
);
34 static bool insert_sm(AVL
*avl
, AvlNode
**p
, const struct sm_state
*sm
);
35 static bool remove_sm(AVL
*avl
, AvlNode
**p
, const struct sm_state
*sm
, AvlNode
**ret
);
36 static bool removeExtremum(AvlNode
**p
, int side
, AvlNode
**ret
);
38 static int sway(AvlNode
**p
, int sway
);
39 static void balance(AvlNode
**p
, int side
);
41 static bool checkBalances(AvlNode
*node
, int *height
);
42 static bool checkOrder(AVL
*avl
);
43 static size_t countNode(AvlNode
*node
);
46 * Utility macros for converting between
47 * "balance" values (-1 or 1) and "side" values (0 or 1).
54 #define bal(side) ((side) == 0 ? -1 : 1)
55 #define side(bal) ((bal) == 1 ? 1 : 0)
57 static int sign(int cmp
)
68 AVL
*avl
= malloc(sizeof(*avl
));
77 void avl_free(AVL
**avl
)
80 freeNode((*avl
)->root
);
86 struct sm_state
*avl_lookup(const AVL
*avl
, const struct sm_state
*sm
)
92 found
= lookup(avl
, avl
->root
, sm
);
95 return (struct sm_state
*)found
->sm
;
98 AvlNode
*avl_lookup_node(const AVL
*avl
, const struct sm_state
*sm
)
100 return lookup(avl
, avl
->root
, sm
);
103 size_t avl_count(const AVL
*avl
)
108 bool avl_insert(AVL
**avl
, const struct sm_state
*sm
)
114 old_count
= (*avl
)->count
;
115 insert_sm(*avl
, &(*avl
)->root
, sm
);
116 return (*avl
)->count
!= old_count
;
119 bool avl_remove(AVL
**avl
, const struct sm_state
*sm
)
121 AvlNode
*node
= NULL
;
126 remove_sm(*avl
, &(*avl
)->root
, sm
, &node
);
128 if ((*avl
)->count
== 0)
139 static AvlNode
*mkNode(const struct sm_state
*sm
)
141 AvlNode
*node
= malloc(sizeof(*node
));
143 assert(node
!= NULL
);
152 static void freeNode(AvlNode
*node
)
155 freeNode(node
->lr
[0]);
156 freeNode(node
->lr
[1]);
161 static AvlNode
*lookup(const AVL
*avl
, AvlNode
*node
, const struct sm_state
*sm
)
168 cmp
= cmp_tracker(sm
, node
->sm
);
171 return lookup(avl
, node
->lr
[0], sm
);
173 return lookup(avl
, node
->lr
[1], sm
);
178 * Insert an sm into a subtree, rebalancing if necessary.
180 * Return true if the subtree's height increased.
182 static bool insert_sm(AVL
*avl
, AvlNode
**p
, const struct sm_state
*sm
)
190 int cmp
= sign(cmp_tracker(sm
, node
->sm
));
197 if (!insert_sm(avl
, &node
->lr
[side(cmp
)], sm
))
200 /* If tree's balance became -1 or 1, it means the tree's height grew due to insertion. */
201 return sway(p
, cmp
) != 0;
206 * Remove the node matching the given sm.
207 * If present, return the removed node through *ret .
208 * The returned node's lr and balance are meaningless.
210 * Return true if the subtree's height decreased.
212 static bool remove_sm(AVL
*avl
, AvlNode
**p
, const struct sm_state
*sm
, AvlNode
**ret
)
214 if (p
== NULL
|| *p
== NULL
) {
218 int cmp
= sign(cmp_tracker(sm
, node
->sm
));
224 if (node
->lr
[0] != NULL
&& node
->lr
[1] != NULL
) {
225 AvlNode
*replacement
;
229 /* Pick a subtree to pull the replacement from such that
230 * this node doesn't have to be rebalanced. */
231 side
= node
->balance
<= 0 ? 0 : 1;
233 shrunk
= removeExtremum(&node
->lr
[side
], 1 - side
, &replacement
);
235 replacement
->lr
[0] = node
->lr
[0];
236 replacement
->lr
[1] = node
->lr
[1];
237 replacement
->balance
= node
->balance
;
243 replacement
->balance
-= bal(side
);
245 /* If tree's balance became 0, it means the tree's height shrank due to removal. */
246 return replacement
->balance
== 0;
249 if (node
->lr
[0] != NULL
)
257 if (!remove_sm(avl
, &node
->lr
[side(cmp
)], sm
, ret
))
260 /* If tree's balance became 0, it means the tree's height shrank due to removal. */
261 return sway(p
, -cmp
) == 0;
267 * Remove either the left-most (if side == 0) or right-most (if side == 1)
268 * node in a subtree, returning the removed node through *ret .
269 * The returned node's lr and balance are meaningless.
271 * The subtree must not be empty (i.e. *p must not be NULL).
273 * Return true if the subtree's height decreased.
275 static bool removeExtremum(AvlNode
**p
, int side
, AvlNode
**ret
)
279 if (node
->lr
[side
] == NULL
) {
281 *p
= node
->lr
[1 - side
];
285 if (!removeExtremum(&node
->lr
[side
], side
, ret
))
288 /* If tree's balance became 0, it means the tree's height shrank due to removal. */
289 return sway(p
, -bal(side
)) == 0;
293 * Rebalance a node if necessary. Think of this function
294 * as a higher-level interface to balance().
296 * sway must be either -1 or 1, and indicates what was added to
297 * the balance of this node by a prior operation.
299 * Return the new balance of the subtree.
301 static int sway(AvlNode
**p
, int sway
)
303 if ((*p
)->balance
!= sway
)
304 (*p
)->balance
+= sway
;
306 balance(p
, side(sway
));
308 return (*p
)->balance
;
312 * Perform tree rotations on an unbalanced node.
314 * side == 0 means the node's balance is -2 .
315 * side == 1 means the node's balance is +2 .
317 static void balance(AvlNode
**p
, int side
)
320 *child
= node
->lr
[side
];
321 int opposite
= 1 - side
;
324 if (child
->balance
!= -bal
) {
325 /* Left-left (side == 0) or right-right (side == 1) */
326 node
->lr
[side
] = child
->lr
[opposite
];
327 child
->lr
[opposite
] = node
;
330 child
->balance
-= bal
;
331 node
->balance
= -child
->balance
;
334 /* Left-right (side == 0) or right-left (side == 1) */
335 AvlNode
*grandchild
= child
->lr
[opposite
];
337 node
->lr
[side
] = grandchild
->lr
[opposite
];
338 child
->lr
[opposite
] = grandchild
->lr
[side
];
339 grandchild
->lr
[side
] = child
;
340 grandchild
->lr
[opposite
] = node
;
346 if (grandchild
->balance
== bal
)
347 node
->balance
= -bal
;
348 else if (grandchild
->balance
== -bal
)
349 child
->balance
= bal
;
351 grandchild
->balance
= 0;
356 /************************* avl_check_invariants() *************************/
358 bool avl_check_invariants(AVL
*avl
)
362 return checkBalances(avl
->root
, &dummy
)
364 && countNode(avl
->root
) == avl
->count
;
367 static bool checkBalances(AvlNode
*node
, int *height
)
372 if (!checkBalances(node
->lr
[0], &h0
))
374 if (!checkBalances(node
->lr
[1], &h1
))
377 if (node
->balance
!= h1
- h0
|| node
->balance
< -1 || node
->balance
> 1)
380 *height
= (h0
> h1
? h0
: h1
) + 1;
388 static bool checkOrder(AVL
*avl
)
391 const struct sm_state
*last
= NULL
;
392 bool last_set
= false;
394 avl_foreach(i
, avl
) {
395 if (last_set
&& cmp_tracker(last
, i
.sm
) >= 0)
404 static size_t countNode(AvlNode
*node
)
407 return 1 + countNode(node
->lr
[0]) + countNode(node
->lr
[1]);
413 /************************* Traversal *************************/
415 void avl_iter_begin(AvlIter
*iter
, AVL
*avl
, AvlDirection dir
)
419 iter
->stack_index
= 0;
420 iter
->direction
= dir
;
422 if (!avl
|| !avl
->root
) {
429 while (node
->lr
[dir
] != NULL
) {
430 iter
->stack
[iter
->stack_index
++] = node
;
431 node
= node
->lr
[dir
];
434 iter
->sm
= (struct sm_state
*) node
->sm
;
438 void avl_iter_next(AvlIter
*iter
)
440 AvlNode
*node
= iter
->node
;
441 AvlDirection dir
= iter
->direction
;
446 node
= node
->lr
[1 - dir
];
448 while (node
->lr
[dir
] != NULL
) {
449 iter
->stack
[iter
->stack_index
++] = node
;
450 node
= node
->lr
[dir
];
452 } else if (iter
->stack_index
> 0) {
453 node
= iter
->stack
[--iter
->stack_index
];
461 iter
->sm
= (struct sm_state
*) node
->sm
;
464 AVL
*avl_clone(AVL
*orig
)
470 avl_insert(&new, i
.sm
);