333
 правки
Изменения
→merge
    curH1 = H1.head
    curH2 = H2.head
    '''while''' curH1 != null && '''and''' curH2 != null 
        '''if''' curH1.degree < curH2.degree 
            curH.sibling = curH1
            '''continue'''
        curH = curH.sibling
    '''return ''' H
</code>