Skip to content

Instantly share code, notes, and snippets.

View jtomschroeder's full-sized avatar

Tom Schroeder jtomschroeder

View GitHub Profile
@jtomschroeder
jtomschroeder / HashMap.h
Last active August 29, 2015 13:56 — forked from aozturk/HashMap.h
#include <iostream>
#include <functional>
using namespace std;
template <typename K, typename V, int TABLE_SIZE = 100>
class HashMap
{
private:
struct HashNode