summaryrefslogtreecommitdiffstats
path: root/microbe/traverser.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-24 01:49:02 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-24 01:49:02 +0000
commit5de3dd4762ca33a0f92e79ffa4fe2ff67069d531 (patch)
treebad482b7afa4cdf47422d60a5dd2c61c7e333b09 /microbe/traverser.cpp
downloadktechlab-5de3dd4762ca33a0f92e79ffa4fe2ff67069d531.tar.gz
ktechlab-5de3dd4762ca33a0f92e79ffa4fe2ff67069d531.zip
Added KDE3 version of ktechlab
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1095338 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'microbe/traverser.cpp')
-rw-r--r--microbe/traverser.cpp100
1 files changed, 100 insertions, 0 deletions
diff --git a/microbe/traverser.cpp b/microbe/traverser.cpp
new file mode 100644
index 0000000..e066381
--- /dev/null
+++ b/microbe/traverser.cpp
@@ -0,0 +1,100 @@
+/***************************************************************************
+ * Copyright (C) 2004-2005 by Daniel Clarke *
+ * daniel.jc@gmail.com *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program 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 General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+
+#include "traverser.h"
+#include "pic14.h"
+
+Traverser::Traverser(BTreeNode *root)
+{
+ m_root = root;
+ m_current = root;
+}
+
+Traverser::~Traverser()
+{
+}
+
+BTreeNode * Traverser::start()
+{
+ /* To find the start we will iterate, or possibly recurse
+ down the tree, each time turning down the node that has children,
+ if they both have no children we have reached the end and it shouldn't
+ really matter which we pick (check this algorithm) */
+
+ BTreeNode *n = m_root;
+ bool found = false;
+
+ while(!found)
+ {
+ if( !n->hasChildren() ) found = true;
+ else
+ {
+ if( !n->left()->hasChildren() )
+ {
+ if( !n->right()->hasChildren() ) found = true;
+ n = n->right();
+ }
+ else n = n->left();
+ }
+ }
+ //if(n->parent()) m_current = n->parent();
+ //else m_current = n;
+ m_current = n;
+ return m_current;
+}
+
+BTreeNode * Traverser::next()
+{
+ // a.t.m we will just take the next thing to be the parent.
+ if( m_current != m_root ) m_current = m_current->parent();
+ return m_current;
+}
+
+bool Traverser::onLeftBranch()
+{
+ return current()->parent()->left() == current();
+}
+
+BTreeNode * Traverser::oppositeNode()
+{
+ if ( onLeftBranch() )
+ return current()->parent()->right();
+ else
+ return current()->parent()->left();
+}
+
+void Traverser::descendLeftwardToTerminal()
+{
+ bool done = false;
+ while(!done)
+ {
+ if( !current()->hasChildren() ) return;
+ else
+ {
+ m_current = current()->left();
+ }
+ }
+}
+
+void Traverser::moveToParent()
+{
+ if(current()->parent()) m_current = current()->parent();
+}
+