# File rbtree.rb, line 92
 def path_to value
	  rv = []
	  search(value) { |val| rv << val }
	  rv
	end