/* 演習10-1 文字列を格納して表示(代入) */ /*--- 全ノードのデータを降順に表示 ---*/ void PrintTreeR(BinNode *p) { if (p != NULL) { PrintTree(p->right); PrintData(p->data); PrintTree(p->left); } }