• 締切済み

二分木,間違い探し

以下のプログラムに,文法的な誤りや危険なコードがあるらしいのですが,どこにあるのか全く分かりません. また,このプログラムを使って中順序での再帰的なprintメソッドの作り方も合わせて教えて下さい. よろしくお願いします. int main(){  string words[]={"heaven","joy","enjoy","boy","enjoy"}; BinaryTree root =new BinaryTree(); InorderBinaryTree wordRoot = new InOrderBinaryTree(words[1],1); InOrderBinaryTree wordRoot2 = new BinaryTree(); wordRoot.right = new InOrderBinaryTree(words[1],1); wordRoot.print(); System.out.println(words[3]+ " " + words[5]); } wordRoot->print(); cout<< words

みんなの回答

  • aoi2008
  • ベストアンサー率42% (6/14)
回答No.1

とりあえず、C&C++ の方で質問したほうがいいんじゃないですか?

-TaKaHiRo-
質問者

お礼

回答ありがとうございます. カテゴリ選択の不備,及び掲載したプログラムが微妙(写し間違い)があるかもしれないので, ここで回答の受付を終了したいと思います.

すると、全ての回答が全文表示されます。

関連するQ&A