forked from KolibriOS/kolibrios
Adding menuetlibc back to its place in /programs/develop/libraries
This version of menuetlibc was taken from revision 4743, right before I made any changes git-svn-id: svn://kolibrios.org@4973 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
67
programs/develop/libraries/menuetlibc/include/zAVLTree.h
Normal file
67
programs/develop/libraries/menuetlibc/include/zAVLTree.h
Normal file
@@ -0,0 +1,67 @@
|
||||
/*
|
||||
* zAVLTree.h: Header file for AVLTrees with string keys.
|
||||
* Copyright (C) 1998 Michael H. Buselli
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the Free
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* The author of this library can be reached at the following address:
|
||||
* Michael H. Buselli
|
||||
* 4334 N. Hazel St. #515
|
||||
* Chicago, IL 60613-1456
|
||||
*
|
||||
* Or you can send email to <cosine@tezcat.com>.
|
||||
* The official web page for this product is:
|
||||
* http://www.tezcat.com/~cosine/pub/AVLTree/
|
||||
*
|
||||
* This is version 0.1.0 (alpha).
|
||||
*/
|
||||
|
||||
#ifndef _ZAVLTREE_H_
|
||||
#define _ZAVLTREE_H_
|
||||
|
||||
|
||||
typedef struct _zAVLNode {
|
||||
const char *key;
|
||||
long depth;
|
||||
void *item;
|
||||
struct _zAVLNode *parent;
|
||||
struct _zAVLNode *left;
|
||||
struct _zAVLNode *right;
|
||||
} zAVLNode;
|
||||
|
||||
|
||||
typedef struct {
|
||||
zAVLNode *top;
|
||||
long count;
|
||||
const char *(*getkey)(const void *item);
|
||||
} zAVLTree;
|
||||
|
||||
|
||||
typedef struct {
|
||||
const zAVLTree *avltree;
|
||||
const zAVLNode *curnode;
|
||||
} zAVLCursor;
|
||||
|
||||
|
||||
extern zAVLTree *zAVLAllocTree (const char *(*getkey)(void const *item));
|
||||
extern void zAVLFreeTree (zAVLTree *avltree, void (freeitem)(void *item));
|
||||
extern int zAVLInsert (zAVLTree *avltree, void *item);
|
||||
extern void *zAVLSearch (zAVLTree const *avltree, const char *key);
|
||||
extern int zAVLDelete (zAVLTree *avltree, const char *key);
|
||||
extern void *zAVLFirst (zAVLCursor *avlcursor, zAVLTree const *avltree);
|
||||
extern void *zAVLNext (zAVLCursor *avlcursor);
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user