摘要: #include #define TREELEN 6using namespace std;typedef struct Node{ char chValue; struct Node* pLeft; struct Node* pRight;}*PNode;void LastOrd... 阅读全文
posted @ 2012-11-24 16:40 吉大依恋 阅读(241) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;struct Node{ char data; int nMaxLeft; int nMaxRight; Node* left; Node* right;};int nMaxLen;int FindMaxLen(Node* pRoot) //... 阅读全文
posted @ 2012-11-24 15:41 吉大依恋 阅读(131) 评论(0) 推荐(0) 编辑