简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
宽度优先遍历——python
#!/usr/bin/env python# -*- coding: utf-8 -*-# @Time: 2018-05-25 10:16# @Author: xxd# @File: test.pyclass Node:def __init__(self,data,left=None,right=None):self.data=data...
python 前序、中序、后续遍历及非递归实现,宽度优先遍历实现
#!/usr/bin/env python# -*- coding: utf-8 -*-# @Time: 2018-05-24 15:16# @Author: xxd# @File: test.pyclass Node:def __init__(self,data,left=None,right=None):self.data=data...
到底了