Function: HEIGHT-DIFF

Source

(defun height-diff (node)
  (abs (- (node-height (left node))
	  (node-height (right node)))))
Source Context