rb_tree.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // Copyright (C) 2023 Mistivia <i@mistivia.com>
  2. // Licensed under GPLv3. See LICENSE for details.
  3. /*
  4. * Copyright 2002 Niels Provos <provos@citi.umich.edu>
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  17. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  18. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  19. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  20. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  21. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  22. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  23. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  25. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. #ifndef RB_TREE_H_
  28. #define RB_TREE_H_
  29. #include <stdlib.h>
  30. struct rb_node {
  31. struct {
  32. struct rb_node *rbe_left;
  33. struct rb_node *rbe_right;
  34. struct rb_node *rbe_parent;
  35. int rbe_color;
  36. } entry;
  37. char content[0];
  38. };
  39. typedef struct rb_node rb_node_t;
  40. struct rb_tree {
  41. rb_node_t *rbh_root;
  42. int (*cmp)(void *k1, void *k2);
  43. void (*augment)(void *elm);
  44. };
  45. typedef struct rb_tree rb_tree_t;
  46. void rb_tree_remove(rb_tree_t *, void *iter);
  47. // return a iterator
  48. void *rb_tree_insert(rb_tree_t *, void *treenode);
  49. void *rb_tree_find(rb_tree_t *, void *val);
  50. void *rb_tree_next(rb_tree_t *, void *iter);
  51. void *rb_tree_min(rb_tree_t *);
  52. void *rb_tree_max(rb_tree_t *);
  53. void *rb_tree_left(void *node);
  54. void *rb_tree_right(void *node);
  55. void *rb_tree_parent(void *node);
  56. #endif