紫书(P149)中的指针版的二叉树是怎么建的
struct Node{ int cnt; string v; Node *r,*l; Node():r(NULL),l(NULL),cnt(0) {} };
那么请问如果是多叉树,Node 后面应该怎么写