1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SOT_SOURCE_SDSTOR_STGAVL_HXX
21 #define INCLUDED_SOT_SOURCE_SDSTOR_STGAVL_HXX
23 // This is an abstract base class for nodes.
24 // Especially, the compare function must be implemented.
28 friend class StgAvlIterator
;
30 sal_Int32
Locate( StgAvlNode
const *, StgAvlNode
**, StgAvlNode
**, StgAvlNode
** );
31 short Adjust( StgAvlNode
**, StgAvlNode
const * );
36 void StgEnum( short& );
37 static StgAvlNode
* Rem( StgAvlNode
**, StgAvlNode
*, bool );
39 short m_nId
; // iterator ID
40 short m_nBalance
; // indicates tree balance
41 StgAvlNode
* m_pLeft
, *m_pRight
; // leaves
44 virtual ~StgAvlNode();
45 StgAvlNode
* Find( StgAvlNode
const * );
46 static bool Insert( StgAvlNode
**, StgAvlNode
* );
47 static bool Remove( StgAvlNode
**, StgAvlNode
*, bool bDel
);
48 virtual sal_Int32
Compare( const StgAvlNode
* ) const = 0;
51 // The iterator class provides single stepping through an AVL tree.
53 class StgAvlIterator
{
54 StgAvlNode
* m_pRoot
; // root entry (parent)
55 short m_nCur
; // current element
56 StgAvlNode
* Find( short );
58 explicit StgAvlIterator( StgAvlNode
* );
65 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */