Scala-based Tree Data Structure
Jump to navigation
Jump to search
A Python-based Tree Data Structure is a tree data structure that is a Python data structure.
- Example(s):
case class Tree[+T](value: T, left: Option[Tree[T]], right: Option[Tree[T]])
http://codereview.stackexchange.com/questions/28773/immutable-binary-search-tree-using-scala].- http://louisbotterill.blogspot.com/2009/08/scala-trees-pattern-matching-and-tree.html
- Counter-Example(s):
- See: Scala Graph Data Structure, Python Variable.