0

我试图找到一种方法来使用这些方法来保存和恢复包含每个节点中的姓名和电话号码的二叉搜索树。

我只是很迷茫,不知道该怎么做。

  '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()) {

    }
}'
4

1 回答 1

3

从 json-io 库https://code.google.com/p/json-io/查看 JsonWriter 和 JsonReader

您必须将 java-io jar 添加到路径中,最好使用 maven 或从“下载”选项卡下载

于 2013-11-09T03:50:17.557 回答