libin103 1.4
Bibliothèque de structures de données en C
Chargement...
Recherche...
Aucune correspondance
integer_bistree.h
Aller à la documentation de ce fichier.
1
13/*****************************************************************************
14* *
15* ------------------------------- bistree.h ------------------------------ *
16* *
17*****************************************************************************/
18
19#ifndef integer_BISTREE_H
20#define integer_BISTREE_H
21
22#include <stdbool.h>
23#include "bitree.h"
24
25/*****************************************************************************
26* *
27* Define balance factors for AVL trees. *
28* *
29*****************************************************************************/
30
33#define integer_AVL_LFT_HEAVY 1
36#define integer_AVL_BALANCED 0
39#define integer_AVL_RGT_HEAVY -1
40
41/*****************************************************************************
42* *
43* Define a structure for nodes in AVL trees. *
44* *
45*****************************************************************************/
46
62
63/*****************************************************************************
64* *
65* Implement binary search trees as binary trees. *
66* *
67*****************************************************************************/
68
77
78/*****************************************************************************
79* *
80* --------------------------- Public Interface --------------------------- *
81* *
82*****************************************************************************/
83
92
102
119
137
150
163
164#endif
Fichier en-tête pour les arbres binaires.
generic_bitree_t integer_bistree_t
Type de données pour représenter arbre binaire de recherche équilibrée.
Definition integer_bistree.h:76
void integer_bistree_init(integer_bistree_t *tree)
Initialisation d'un nouvel arbre binaire de recherche équilibré
void integer_bistree_destroy(integer_bistree_t *tree)
Destruction d'un arbre binaire de recherche équilibré
int integer_bistree_size(integer_bistree_t *tree)
Accesseur donnant la taille de l'arbre binaire de recherche équillibré
int integer_bistree_insert(integer_bistree_t *tree, int data)
Insertion d'une nouvelle valeur dans un arbre binaire de recherche équilibré
struct integer_avlnode_t integer_avlnode_t
Type de données pour représenter l'information stockée dans un noeud d'un arbre binaire.
bool integer_bistree_lookup(integer_bistree_t *tree, int data)
Test la présence d'une valeur dans l'arbre binaire de recherche équilibré
int integer_bistree_remove(integer_bistree_t *tree, int data)
Suppression d'une valeur dans un arbre binaire de recherche équilibré
Type de données pour l'arbre binaire générique.
Definition generic_bitree.h:44
Type de données pour représenter l'information stockée dans un noeud d'un arbre binaire.
Definition integer_bistree.h:55
int factor
Definition integer_bistree.h:59
int hidden
Definition integer_bistree.h:57
int data
Definition integer_bistree.h:56