Insert an element into a leftist tree
Insert an element into a leftist tree. This function is defined in terms of MERGE-LT.
Example usage:
(INSERT-LT 2 (INSERT-LT 3 (INSERT-LT 4 *EMPTY-LT*)))
This creates a leftist tree with elements 2, 3, 4.