Giter Site home page Giter Site logo

bhash's Introduction

BHash

Ruby gem to make a bi-directional hash map. A bi-directional hash is a key, key pair hash, where the corresposnding key to a given key can be found in constant time.

Install

gem install bhash

Using BHash

Loading the gem in your Ruby script

require 'bhash'

Initialize

Initializing empty BHash

hash = BHash.new()

Initializing BHash with a Hash object

hash = BHash.new({"Dog=>"Cat","Horse"=>"Girrafe", 1=>2})

Adding keys

Add single key, key pair

hash.add("Apple","Oranges")

Add multiple key,key pairs

hash.add({"Dog=>"Cat","Horse"=>"Girrafe", 1=>2})

Find a key corresponding to a given key

hash.find("Alaska")

Delete a key, key pair

Pass either of the key from key, key to be deleted

hash.delete("Golf")

Check if a key is present

hash.present?("Mozart")

Update a key

hash.update_key(old_key,new_key)

Update corresponding key of a given key

hash.update_value(given_key,new_corresponding_key)

Printing a BHash

hash.print()

bhash's People

Contributors

tejas7777 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.