Skip to content

Instantly share code, notes, and snippets.

@sumew
Created April 14, 2020 02:43
Show Gist options
  • Save sumew/67823329a081119adef91f525f13ee36 to your computer and use it in GitHub Desktop.
Save sumew/67823329a081119adef91f525f13ee36 to your computer and use it in GitHub Desktop.
/**
* 1
* / | \
* / | \
* / | \
* 2 3 8
* / \ / \ / \
* 4 5 6 7 9 10
* Preorder: 1,2,4,5,3,6,7,8,9,10
* PostOrder: 4,5,2,6,7,3,9,10,8,1
* InOrder: 4,2,5,1,6,3,7,9,8,10
*
**/
case class Tree[T](value: T, children: List[Tree[T]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment