Traverse Binary Tree
cd155 opened this issue · 1 comments
cd155 commented
All the traverse in the following code can be shortened. It is unnecessary to specifically make left or right to be Null. It better treat them just as children as left and right.
algorithm-design-with-haskell/src/Tree.hs
Line 45 in 71661bb
cd155 commented
New binary tree traverses are made in the following link.