2014年9月5日

二叉树遍历 (前序 层次 == 深度 广度) 层次遍历

摘要: #include#include#include#includeusing namespace std;struct Node;//二叉树节点 class Node{ public: Node(int node):parent(NULL),left(NULL),right(NUL... 阅读全文

posted @ 2014-09-05 09:48 yi_meng 阅读(335) 评论(0) 推荐(0) 编辑

导航