Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
二分探索木の場合、ルート ノードにしかアクセスできませんが、その左側のノードを掘り下げるための再帰的なメソッドを作成しようとしています。
例えば、
root.left();
になる
root.left().left();
その後、
これがどこに向かっているかがわかります..変数を変更/追加する再帰的な方法はありますか?
このようなもの ?
Node node = root; while (someCondition) { node = node.left(); // do something with the node }