Skip to content

Instantly share code, notes, and snippets.

@DanielYWoo
DanielYWoo / rbtree.erl
Last active August 29, 2015 14:21 — forked from mjn/rbtree.erl
-module(rbtree).
-export([insert/3, find/2]).
% Node structure: { Key, Value, Color, Smaller, Bigger }
find(_, nil) ->
not_found;
find(Key, { Key, Value, _, _, _ }) ->
{ found, { Key, Value } };