怎样运用该语句p->data=p->data+'a'-'A' 让二叉树中所有的大写变小写
if (p->data >= 'A' && p->data <= 'Z') p->data=p->data+'a'-'A';