我創建了一個BST,它將每個節點設置爲一個字符串值,我想知道是否有一種方法可以在樹中搜索,但一次只能搜索一個值。所以說節點中的字符串是「卡車」,有沒有辦法在樹中搜索並返回「t」?這是我的代碼具有興建樹:通過BST搜索
public class BinaryTree {
public Node root;
public BinaryTree tree;
public static int pos;
public static Node[] theArray;
private static class Node {
Node left;
Node right;
String data;
Node(String s) {
left = null;
right = null;
data = s;
}
}
public BinaryTree plantTree(ArrayList<String> dict) {
tree = new BinaryTree();
Collections.shuffle(dict);
for (String s : dict) {
s.toUpperCase();
tree.add(s);
}
return tree;
}
/**
* Creates an empty binary tree
*/
public BinaryTree() {
root = null;
}
public void add(String data) {
root = add(root, data);
}
private Node add(Node node, String data) {
if (node == null) {
node = new Node(data);
} else {
if (data.compareTo(node.data) > 0) {
node.left = add(node.left, data);
} else {
node.right = add(node.right, data);
}
}
return (node);
}
}
你的問題不清楚 – Adrian 2012-03-21 20:37:55