当前位置: 首页>>代码示例>>Python>>正文


Python Stack.content方法代码示例

本文整理汇总了Python中stack.Stack.content方法的典型用法代码示例。如果您正苦于以下问题:Python Stack.content方法的具体用法?Python Stack.content怎么用?Python Stack.content使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在stack.Stack的用法示例。


在下文中一共展示了Stack.content方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_history_depth_count_should_match_number_of_pushes

# 需要导入模块: from stack import Stack [as 别名]
# 或者: from stack.Stack import content [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)
开发者ID:scherrey,项目名称:ADnD,代码行数:28,代码来源:test_stack.py


注:本文中的stack.Stack.content方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。