此类型如何定义:struct node{int data;struct node *pLc;struct node *pRc;node() //此为何种意思{data = 0;pLc = 0;pRc = 0;}}NODE;
void insert(NODE *&pTree, NODE *pNewNode) //是定义了指针吗?
此类型如何定义:struct node{int data;struct node *pLc;struct node *pRc;node() //此为何种意思 为构造函数{data = 0;pLc = 0;pRc = 0;}}NODE;
void insert(NODE *&pTree, NODE *pNewNode) //是定义了指针吗?指针的引用
楼主何以得出如此结论~
C中无引用.