00001 /*************************************************************************** 00002 * Copyright (C) 2004-2005 by Daniel Clarke * 00003 * daniel.jc@gmail.com * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU General Public License * 00016 * along with this program; if not, write to the * 00017 * Free Software Foundation, Inc., * 00018 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00019 ***************************************************************************/ 00020 #ifndef TRAVERSER_H 00021 #define TRAVERSER_H 00022 00023 #include "btreenode.h" 00024 00033 class Traverser 00034 { 00035 public: 00036 Traverser(BTreeNode *root); 00037 ~Traverser(); 00038 00040 BTreeNode *start(); 00041 00043 BTreeNode *next(); 00044 00046 bool onLeftBranch(); 00047 00049 BTreeNode * oppositeNode(); 00050 00051 BTreeNode * current() const { return m_current; } 00052 00053 void setCurrent(BTreeNode *current){m_current = current;} 00054 00058 void descendLeftwardToTerminal(); 00059 00063 void moveToParent(); 00064 00065 BTreeNode *root() const {return m_root;} 00066 00067 protected: 00068 BTreeNode *m_root; 00069 BTreeNode *m_current; 00070 }; 00071 00072 #endif
1.5.1