module Algorithmable::DataStructs::Tree

Public Instance Methods

new_ordered_binary_tree(collection = []) click to toggle source
# File lib/algorithmable/data_structs/tree.rb, line 8
def new_ordered_binary_tree(collection = [])
  BinarySearch.new(collection)
end