【发布时间】:2017-05-13 21:10:43
【问题描述】:
我正在尝试将我的 BST 写入一个文本文件,但它无法正常工作。我想知道我在哪里搞砸了,因为到目前为止,没有任何东西被写入文件。问题出在BinaryTree.java。 display() 方法是我试图将项目放入 Student.txt 文件的地方。
这是我的Node.java:
class Node {
Student data;
Faculty data2;
Node left;
Node right;
public Node(Student data) {
this.data = data;
this.left = left;
this.right = left;
}
public Node(Faculty data2) {
this.data2 = data2;
this.left = left;
this.right = right;
}
}
这是我的BinaryTree.java:
int index = 0;
String[] sa = new String[index];
public void studentArray() {
studentArray(root,index);
}
public int studentArray(Node root, int index) {
if(root.left != null) {
index = studentArray(root.left, index);
}
sa[++index] = root.data.getLastName().toString();
if(root.right != null) {
index = studentArray(root.right,index);
}
return index;
}
public void displayStudent(Node root) throws IOException {
if(root != null) { // If root isn't empty.
if(root.left != null) {
displayStudent(root.left); // Recursively display left nodes.
}
System.out.println(root.data.toString()); // Print to the console data that's in the root in order.
if(root.right != null) {
displayStudent(root.right); // Recursively display right nodes.
}
}
String file = "Student.txt";
FileWriter fw = new FileWriter(new File(file));
try {
for(index = 0; index < sa.length; index++) {
fw.write(sa[index] + " ");
}
fw.close();
} catch(Exception e) {
System.out.println("File not found.");
}
}
这是我的Main.java:
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {
Student student1 = new Student("Mike", "Piazza", "S3123456");
Student student2 = new Student("Jack", "Jill", "S3123456");
Student student3 = new Student("Alice", "Jones", "S3123456");
BinaryTree bt = new BinaryTree();
bt.insertStudent(student1);
bt.insertStudent(student2);
bt.insertStudent(student3);
bt.displayStudent(bt.root);
}
这是我的Student.txt 文件:
*displays nothing*
【问题讨论】:
标签: java algorithm file data-structures binary-tree