本文整理汇总了Python中stack.Stack.print_i方法的典型用法代码示例。如果您正苦于以下问题:Python Stack.print_i方法的具体用法?Python Stack.print_i怎么用?Python Stack.print_i使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类stack.Stack
的用法示例。
在下文中一共展示了Stack.print_i方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: combine_stacks
# 需要导入模块: from stack import Stack [as 别名]
# 或者: from stack.Stack import print_i [as 别名]
if y != None:
newstack.push(y)
else:
s2 = True
if s1 == True and s2==True:
break
newstack.print_i("r")
return
x=Stack()
s=Stack()
sp=Stack()
s.push(9)
s.push(7)
s.push(5)
s.push(3)
s.push(1)
sp.push(14)
sp.push(12)
sp.push(10)
sp.push(8)
sp.push(6)
sp.push(4)
sp.push(2)
combine_stacks(x,s,sp)
x.combine(s,sp)
x.print_i("r")