aboutsummaryrefslogtreecommitdiff
path: root/binary_search_tool/full_bisect_test/bad-output-1.txt
blob: dfd0bfc63093a34aa4887c2470fea23be68300aa (plain)
1
2
3
4
5
6
7
8
9
10
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: 
28 30 35 60 65 68 70