數據結構 -> 後序建立二叉樹

二叉樹的前,中,後序遍歷 以及經過補‘#’字符補充二叉樹空分支,按照前序順序構造二叉樹, 這些都比較簡單,我這就不過多地贅述;直接貼代碼 #include "stdafx.h" #include<iostream> using namespace std; typedef char DataType; typedef struct Node { DataType data;
相關文章
相關標籤/搜索