class tree
{
 public:
      void  *Data; 这句话什么意思,为什么用到Void 他不是关键字吗
      Tree  *Left; 这句话什么意思
      Tree  *Right;
}