本文整理汇总了Python中types.SimpleNamespace.node_count方法的典型用法代码示例。如果您正苦于以下问题:Python SimpleNamespace.node_count方法的具体用法?Python SimpleNamespace.node_count怎么用?Python SimpleNamespace.node_count使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类types.SimpleNamespace
的用法示例。
在下文中一共展示了SimpleNamespace.node_count方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: pretty_print_trie
# 需要导入模块: from types import SimpleNamespace [as 别名]
# 或者: from types.SimpleNamespace import node_count [as 别名]
def pretty_print_trie(serialized: bytes, show_merged=False, show_lookahead_barriers=True, colors=False):
color_map = color_map_colors if colors else color_map_dummy
hashtable = {}
stats = Empty()
stats.node_count = 0
stats.max_node_results = 0
stats.max_node_children = 0
stats.max_node_result_index = 0
stats.max_node_child_offset = 0
out = _pretty_print_trie(serialized, hashtable, stats, Trie.root_offset_struct.unpack_from(serialized, 0)[0], '', show_merged=show_merged, show_lookahead_barriers=show_lookahead_barriers, color_map=color_map)
if out: out = color_map['white'] + out
stats = """
node count: {}
max node results: {}
max node children: {}
max node result index: {}
max node child offset: {}""".lstrip().format(stats.node_count, stats.max_node_results, stats.max_node_children, stats.max_node_result_index, stats.max_node_child_offset)
return out, stats