aboutsummaryrefslogtreecommitdiff
path: root/binary_search_tool/full_bisect_test/good-output.txt
diff options
context:
space:
mode:
Diffstat (limited to 'binary_search_tool/full_bisect_test/good-output.txt')
-rw-r--r--binary_search_tool/full_bisect_test/good-output.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/binary_search_tool/full_bisect_test/good-output.txt b/binary_search_tool/full_bisect_test/good-output.txt
new file mode 100644
index 00000000..4db15eb2
--- /dev/null
+++ b/binary_search_tool/full_bisect_test/good-output.txt
@@ -0,0 +1,11 @@
+pre-order traversal, with recursion:
+35 28 20 25 23 26 30 60 70 65 64 68
+
+pre-order traversal, without recursion:
+35 28 20 25 23 26 30 60 70 65 64 68
+
+in-order traversal, with recursion:
+20 23 25 26 28 30 35 60 64 65 68 70
+
+in-order traversal, without recursion:
+20 23 25 26 28 30 35 60 64 65 68 70