摘要: public class GetBST { public TreeNode root; public GetBST(int data) { root = new TreeNode(data); } public static void main(String[] args) { /*创建根节点*/ 阅读全文
posted @ 2017-03-11 23:21 liaochuanhu 阅读(27) 评论(0) 推荐(0)