1 | /* $Id: avllu32.cpp 4687 2007-09-11 09:13:32Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - AVL tree, uint32_t, unique keys.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2001-2006 knut st. osmundsen (bird-src-spam@anduin.net)
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef NOFILEID
|
---|
19 | static const char szFileId[] = "Id: kAVLULInt.c,v 1.4 2003/02/13 02:02:38 bird Exp $";
|
---|
20 | #endif
|
---|
21 |
|
---|
22 | /*******************************************************************************
|
---|
23 | * Defined Constants And Macros *
|
---|
24 | *******************************************************************************/
|
---|
25 | /*
|
---|
26 | * AVL configuration.
|
---|
27 | */
|
---|
28 | #define KAVL_FN(a) RTAvllU32##a
|
---|
29 | #define KAVL_MAX_STACK 27 /* Up to 2^24 nodes. */
|
---|
30 | #define KAVL_EQUAL_ALLOWED 1 /* List duplicate keys! */
|
---|
31 | #define KAVLNODECORE AVLLU32NODECORE
|
---|
32 | #define PKAVLNODECORE PAVLLU32NODECORE
|
---|
33 | #define PPKAVLNODECORE PPAVLLU32NODECORE
|
---|
34 | #define KAVLKEY AVLLU32KEY
|
---|
35 | #define PKAVLKEY PAVLLU32KEY
|
---|
36 | #define KAVLENUMDATA AVLLU32ENUMDATA
|
---|
37 | #define PKAVLENUMDATA PAVLLU32ENUMDATA
|
---|
38 | #define PKAVLCALLBACK PAVLLU32CALLBACK
|
---|
39 |
|
---|
40 |
|
---|
41 | /*
|
---|
42 | * AVL Compare macros
|
---|
43 | */
|
---|
44 | #define KAVL_G(key1, key2) ( (key1) > (key2) )
|
---|
45 | #define KAVL_E(key1, key2) ( (key1) == (key2) )
|
---|
46 | #define KAVL_NE(key1, key2) ( (key1) != (key2) )
|
---|
47 |
|
---|
48 |
|
---|
49 | /*******************************************************************************
|
---|
50 | * Header Files *
|
---|
51 | *******************************************************************************/
|
---|
52 | #include <iprt/avl.h>
|
---|
53 | #include <iprt/assert.h>
|
---|
54 |
|
---|
55 | /*
|
---|
56 | * Include the code.
|
---|
57 | */
|
---|
58 | #define SSToDS(ptr) ptr
|
---|
59 | #define KMAX RT_MAX
|
---|
60 | #define kASSERT Assert
|
---|
61 | #include "avl_Base.cpp.h"
|
---|
62 | #include "avl_Get.cpp.h"
|
---|
63 | #include "avl_GetBestFit.cpp.h"
|
---|
64 | #include "avl_RemoveBestFit.cpp.h"
|
---|
65 | #include "avl_DoWithAll.cpp.h"
|
---|
66 | #include "avl_Destroy.cpp.h"
|
---|
67 |
|
---|
68 |
|
---|