libin103 1.4
Bibliothèque de structures de données en C
Chargement...
Recherche...
Aucune correspondance
character_bistree.h
Aller à la documentation de ce fichier.
1
13/*****************************************************************************
14* *
15* ------------------------------- bistree.h ------------------------------ *
16* *
17*****************************************************************************/
18
19#ifndef character_BISTREE_H
20#define character_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 character_AVL_LFT_HEAVY 1
36#define character_AVL_BALANCED 0
39#define character_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.
int character_bistree_remove(character_bistree_t *tree, char data)
Suppression d'une valeur dans un arbre binaire de recherche équilibré
int character_bistree_insert(character_bistree_t *tree, char data)
Insertion d'une nouvelle valeur dans un arbre binaire de recherche équilibré
generic_bitree_t character_bistree_t
Type de données pour représenter arbre binaire de recherche équilibrée.
Definition character_bistree.h:76
void character_bistree_destroy(character_bistree_t *tree)
Destruction d'un arbre binaire de recherche équilibré
struct character_avlnode_t character_avlnode_t
Type de données pour représenter l'information stockée dans un noeud d'un arbre binaire.
int character_bistree_size(character_bistree_t *tree)
Accesseur donnant la taille de l'arbre binaire de recherche équillibré
bool character_bistree_lookup(character_bistree_t *tree, char data)
Test la présence d'une valeur dans l'arbre binaire de recherche équilibré
void character_bistree_init(character_bistree_t *tree)
Initialisation d'un nouvel arbre binaire de recherche équilibré
Type de données pour représenter l'information stockée dans un noeud d'un arbre binaire.
Definition character_bistree.h:55
int hidden
Definition character_bistree.h:57
int factor
Definition character_bistree.h:59
char data
Definition character_bistree.h:56
Type de données pour l'arbre binaire générique.
Definition generic_bitree.h:44