摘要:
#include #define TREELEN 6using namespace std;typedef struct Node{ char chValue; struct Node* pLeft; struct Node* pRight;}*PNode;void LastOrd... 阅读全文
摘要:
#includeusing namespace std;struct Node{ char data; int nMaxLeft; int nMaxRight; Node* left; Node* right;};int nMaxLen;int FindMaxLen(Node* pRoot) //... 阅读全文