本文整理汇总了Python中stack.Stack.total_operations方法的典型用法代码示例。如果您正苦于以下问题:Python Stack.total_operations方法的具体用法?Python Stack.total_operations怎么用?Python Stack.total_operations使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类stack.Stack
的用法示例。
在下文中一共展示了Stack.total_operations方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_history_depth_count_should_match_number_of_pushes
# 需要导入模块: from stack import Stack [as 别名]
# 或者: from stack.Stack import total_operations [as 别名]
def test_history_depth_count_should_match_number_of_pushes(self):
s = Stack()
#import pdb; pdb.set_trace()
self.assertEqual(s.history_depth_count(0),1)
self.assertTrue(s.is_empty())
self.assertEqual(s.content(),[])
for i, v in enumerate(self.init_list):
s.push(v)
expected = [1]*(i+2)+[0]*(len(self.init_list)-1)
for depth in range(len(self.init_list)+1):
self.assertEqual(s.history_depth_count(depth),expected[depth])
depth_count = s.history_depth_count()
self.assertEqual(depth_count,[(0,1),(1,1),(2,1),(3,1),(4,1),(5,1)])
self.assertEqual(s.max_depth(), self.max_depth)
self.assertEqual(s.total_operations(), len(self.init_list))
empty = None
while empty != KStack.Empty:
empty = s.pop()
self.assertEqual(s.total_operations(), len(self.init_list)*2)