288
правок
Изменения
Нет описания правки
<code>
'''Node''' rotateRight( h : '''Node''') :
'''return''' x
</code>
<code>
'''Node''' rotateLeft( h : '''Node''') :
'''return''' x
</code>
<code>
'''void''' flipColors( h : '''Node''' h) :
</code>
<code>
'''void''' insert( '''key''' : Key, '''value''' : Value ):
</code>
<code>
'''Node''' insert( h : '''Node''', key : '''Key''', value : '''Value'''):
'''return''' '''new''' Node(key, value)
'''if''' isRed(h.left) '''&&''' isRed(h.right)
<code>
'''Node''' x = root
'''while''' x '''!'''= null