class Algorithmable::DataStructs::OrderedSymbolTable

Public Class Methods

new(key_type, value_type) click to toggle source
# File lib/algorithmable/data_structs/ordered_symbol_table.rb, line 8
def initialize(key_type, value_type)
  search_strategy_factory = Object.new.extend Algorithmable::Searches
  @imp = search_strategy_factory.new_binary_search_tree(key_type, value_type)
end