我试图找到一种方法来使用这些方法来保存和恢复包含每个节点中的姓名和电话号码的二叉搜索树。
我只是很迷茫,不知道该怎么做。
'public void save(String fileName) {
// TODO : implement this method.
// save bst to its original shape.
}
public void restore(String fileName) {
// TODO : implement this method.
// restore bst from a file, if file exists.
// do nothing, otherwise.
File fichier = new File(fileName);
if (fichier.exists()) {
}
}'