摘要: public class BinaryTree { private static class Node { // 定义树的节点 private int value; // 节点当中的值 private Node leftNode; // 左子节点 private Node rightNode; // 右子节点 public... 阅读全文
posted @ 2019-04-28 15:58 __lay 阅读(309) 评论(0) 推荐(0) 编辑
摘要: import java.util.Arrays; public class BinarySearch { private int[] values; public BinarySearch(int[] values) { if (values == null) throw new RuntimeException("values can not be nul... 阅读全文
posted @ 2019-04-28 10:12 __lay 阅读(163) 评论(0) 推荐(0) 编辑