VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/table/avl_RemoveBestFit.cpp.h@ 9230

Last change on this file since 9230 was 8155, checked in by vboxsync, 17 years ago

The Big Sun Rebranding Header Change

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.9 KB
Line 
1/* $Id: avl_RemoveBestFit.cpp.h 8155 2008-04-18 15:16:47Z vboxsync $ */
2/** @file
3 * kAVLRemoveBestFit - Remove Best Fit routine for AVL trees.
4 * Intended specially on heaps. The tree should allow duplicate keys.
5 *
6 */
7
8/*
9 * Copyright (C) 1999-2002 knut st. osmundsen (bird-src-spam@anduin.net)
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 *
19 * The contents of this file may alternatively be used under the terms
20 * of the Common Development and Distribution License Version 1.0
21 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
22 * VirtualBox OSE distribution, in which case the provisions of the
23 * CDDL are applicable instead of those of the GPL.
24 *
25 * You may elect to license modified versions of this file under the
26 * terms and conditions of either the GPL or the CDDL or both.
27 *
28 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
29 * Clara, CA 95054 USA or visit http://www.sun.com if you need
30 * additional information or have any questions.
31 */
32
33#ifndef _kAVLRemoveBestFit_h_
34#define _kAVLRemoveBestFit_h_
35
36
37/**
38 * Finds the best fitting node in the tree for the given Key value.
39 * And removes it.
40 * @returns Pointer to the best fitting node found.
41 * @param ppTree Pointer to Pointer to the tree root node.
42 * @param Key The Key of which is to be found a best fitting match for..
43 * @param fAbove TRUE: Returned node is have the closest key to Key from above.
44 * FALSE: Returned node is have the closest key to Key from below.
45 * @sketch The best fitting node is always located in the searchpath above you.
46 * >= (above): The node where you last turned left.
47 * <= (below): the node where you last turned right.
48 * @remark This implementation should be speeded up slightly!
49 */
50RTDECL(PKAVLNODECORE) KAVL_FN(RemoveBestFit)(PPKAVLNODECORE ppTree, KAVLKEY Key, bool fAbove)
51{
52 /*
53 * If we find anything we'll have to remove the node and return it.
54 * But, if duplicate keys are allowed we'll have to check for multiple
55 * nodes first and return one of them before doing an expensive remove+insert.
56 */
57 PKAVLNODECORE pNode = KAVL_FN(GetBestFit)(ppTree, Key, fAbove);
58 if (pNode != NULL)
59 {
60#ifdef KAVL_EQUAL_ALLOWED
61 if (pNode->pList != KAVL_NULL)
62 {
63 PKAVLNODECORE pRet = KAVL_GET_POINTER(&pNode->pList);
64 KAVL_SET_POINTER_NULL(&pNode->pList, &pRet->pList);
65 return pRet;
66 }
67#endif
68 pNode = KAVL_FN(Remove)(ppTree, pNode->Key);
69 }
70 return pNode;
71}
72
73
74#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette