我正在尝试找到一种方法来使用这些方法来保存和恢复包含每个节点中的名称和电话号码的二叉搜索树。
我非常迷失,如何去做。
'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()) {
}
}'
答案 0 :(得分:3)
从json-io库https://code.google.com/p/json-io/查看JsonWriter和JsonReader
您必须将java-io jar添加到您的路径中,最好使用maven或从“下载”选项卡下载