BohYoh.comトップページへ

C言語によるアルゴリズムとデータ構造

戻る  

演習10-1の解答

 関数PrintTree は、キー値である氏名の昇順に表示する。逆順に表示する以下の関数を作成せよ。
  void PrintTreeR (BinNode *p);

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


戻る