function rotateRight(h) {
    const x = h.left
    h.left = x.right
    x.right = h
    x.color = h.color