Skip to content

Instantly share code, notes, and snippets.

@pydi
pydi / binarytree.rb
Created February 23, 2012 02:05 — forked from yuya-takeyama/binarytree.rb
Binary Tree implemented in Ruby.
module BinaryTree
class Node
attr_reader :word, :count, :left, :right
include Enumerable
def initialize(word)
@word, @count = word, 1
end