summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/data/bst/DirectedWalkFunction.java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2015-09-29 16:24:37 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2015-09-29 16:24:37 -0400
commitba7711b8546e08fa6376a85271d2ca1c34cc902b (patch)
treea04b8283c828eb49c978955ccef7c4cab3fe9754 /BJC-Utils2/src/main/java/bjc/utils/data/bst/DirectedWalkFunction.java
parentb964a4b44cd2c24083db8e1cccfd6de22e440861 (diff)
Moved around tree stuff.
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/data/bst/DirectedWalkFunction.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/data/bst/DirectedWalkFunction.java43
1 files changed, 0 insertions, 43 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/data/bst/DirectedWalkFunction.java b/BJC-Utils2/src/main/java/bjc/utils/data/bst/DirectedWalkFunction.java
deleted file mode 100644
index 232f3d4..0000000
--- a/BJC-Utils2/src/main/java/bjc/utils/data/bst/DirectedWalkFunction.java
+++ /dev/null
@@ -1,43 +0,0 @@
-package bjc.utils.data.bst;
-
-/**
- * Represents a function for doing a directed walk of a binary tree.
- * @author ben
- *
- * @param <T>
- */
-@FunctionalInterface
-public interface DirectedWalkFunction<T> {
- /**
- * Represents the results used to direct a walk in a binary tree.
- *
- * @author ben
- *
- */
- public enum DirectedWalkResult {
- /**
- * Specifies that the function has succesfully completed
- *
- */
- SUCCESS,
- /**
- * Specifies that the function has failed.
- */
- FAILURE,
- /**
- * Specifies that the function wants to move left in the tree next.
- */
- LEFT,
- /**
- * Specifies that the function wants to move right in the tree next.
- */
- RIGHT
- }
-
- /**
- * Perform a directed walk on a node of a tree.
- * @param data The data stored in the node currently being visited
- * @return The way the function wants the walk to go next.
- */
- public DirectedWalkResult walk(T data);
-}