215
правок
Изменения
Очередь
,Нет описания правки
=== pop ===
'''function''' pop():
'''if''' !'''not''' empty()
x = elements[head]
head = (head + 1) % elements.length
=== pop ===
'''function''' pop():
'''if''' !'''not''' rigthStack.empty()
'''return''' popRight()
'''else'''
'''while''' !'''not''' leftStack.empty()
pushRight(popLeft())
'''return''' popRight()