Skip to content

Instantly share code, notes, and snippets.

@OneCent01
Last active June 11, 2017 22:16
Show Gist options
  • Save OneCent01/fa239602cd30578f3bbb0e6d572ddb5f to your computer and use it in GitHub Desktop.
Save OneCent01/fa239602cd30578f3bbb0e6d572ddb5f to your computer and use it in GitHub Desktop.
initialization of hastable
var HashTable = function(limit=8) {
this._limit = limit;
this._storage = [];
this._count = 0;
}
//this._storage = [/*container*/[/*bucket*/], [[/*tuple*/], []]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment