module Algorithmable::Searches

Public Instance Methods

new_binary_search_tree(key_type, value_type) click to toggle source
# File lib/algorithmable/searches.rb, line 10
def new_binary_search_tree(key_type, value_type)
  BinarySearchTree.new key_type, value_type
end