The document discusses two methods for constructing a min-heap from a given sequence of numbers. The first method builds a complete binary tree and then checks that each node's value is greater than its parent's value, swapping if needed. The second method inserts nodes one by one, checking and swapping with the parent if the parent's value is greater. Both methods are walked through step-by-step using the example sequence 15, 3, 6, 18, 5, 9, 11.