求解答java全英语面试题

沙鹏去开车 2019-05-09 04:14:08
...全文
63 1 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
1 条回复
切换为时间正序
请发表友善的回复…
发表回复
ninuxGithub 2019-05-17
  • 打赏
  • 举报
回复
最后一题的个人见解

public class Tree {

    static Node treeRoot;

    static Map<Integer,List<Node>> map = new HashMap<>();


    public static int fxy(Node x, Node y) {
        return Node.getSum(x) + Node.getSum(y);
    }

    public static void main(String[] args) {

        int deepth = 4;
        int level=1;
        buildTree(null, level, deepth);
        System.out.println(treeRoot);

        List<Map.Entry<Integer, List<Node>>> entryList = new ArrayList<>(map.entrySet());
        for (int i=0; i<entryList.size(); i++){
            List<Node> nodes = entryList.get(i).getValue();
            for (int j=0; j<nodes.size(); j++){
                System.out.print(getSmbos("**", deepth+1 - i) +nodes.get(j).getValue());
            }
            System.out.println("");

        }
        List<Node> nodeList = entryList.get(deepth - 1).getValue();
        /*for (int i=0; i<nodeList.size(); i++){
            System.out.println("第"+deepth+"排的第"+(i+1)+"列的元素到root的和为:"+Node.getSum(nodeList.get(i)));
        }*/

        List<Node> max2List = nodeList.stream().sorted(new Comparator<Node>() {
            @Override
            public int compare(Node o1, Node o2) {
                return Node.getSum(o1) - Node.getSum(o2);
            }
        }.reversed()).limit(2).collect(Collectors.toList());


        for (int i=0; i<nodeList.size(); i++){
            if (nodeList.get(i) == max2List.get(0) || nodeList.get(i) ==max2List.get(1)){
                System.out.println("第"+deepth+"排的第"+(i+1)+"列的元素到root的和为:"+Node.getSum(nodeList.get(i)));
            }

        }

    }


    /**
     * @param root root 节点
     * @param level 深度从第几层开始
     * @param deepth 深度
     */
    public static void buildTree(Node root, int level, int deepth) {
        if(level ==1 && root == null){
            root = createLeafNodes(null);
            root.setDeepth(deepth);
            treeRoot = root;
            initMap(root, level);
        }
        level++;
        if (level > deepth) {
            return;
        }
        root.setLeftLeaf(createLeafNodes(root));
        initMap(root.getLeftLeaf(), level);
        buildTree(root.getLeftLeaf(), level, deepth);

        root.setRightLeaf(createLeafNodes(root));
        initMap(root.getRightLeaf(), level);
        buildTree(root.getRightLeaf(), level, deepth);
    }

    private static void initMap(Node root, int level) {
        List<Node> list = map.get(level);
        if (null == list){
            list = new ArrayList<>();
        }
        list.add(root);
        map.put(level, list);
    }

    private static String getSmbos(String smbo , int deepth){
        String s = "";
        for (int i=0; i<deepth; i++){
            s += smbo;
        }
        return s;
    }


    public static Node createLeafNodes(Node parent) {
        return new Node(getRandomNum(), parent);
    }


    private static int getRandomNum() {
        Random random = new Random();
        int num = random.nextInt(20);
        return num;
    }


    static class Node {
        int value;

        int deepth;

        Node leftLeaf;

        Node rightLeaf;

        Node parent;

        public Node(int value, Node parent) {
            this.value = value;
            this.parent = parent;
        }

        public Node(int value, Node leftLeaf, Node rightLeaf, Node parent) {
            this.value = value;
            this.leftLeaf = leftLeaf;
            this.rightLeaf = rightLeaf;
            this.parent = parent;
        }

        public static int getSum(Node node){
            int sum = node.getValue();
            Node p = node.getParent();
            while (p !=null){
                sum += p.getValue();
                p = p.getParent();
            }

            return sum;
        }
        public int getDeepth() {
            return deepth;
        }

        public void setDeepth(int deepth) {
            this.deepth = deepth;
        }

        public int getValue() {
            return value;
        }

        public void setValue(int value) {
            this.value = value;
        }

        public Node getLeftLeaf() {
            return leftLeaf;
        }

        public void setLeftLeaf(Node leftLeaf) {
            this.leftLeaf = leftLeaf;
        }

        public Node getRightLeaf() {
            return rightLeaf;
        }

        public void setRightLeaf(Node rightLeaf) {
            this.rightLeaf = rightLeaf;
        }

        public Node getParent() {
            return parent;
        }

        public void setParent(Node parent) {
            this.parent = parent;
        }

        @Override
        public String toString() {
            return "Node{" +
                    "value=" + value +
                    ", parent=" + (parent == null ? "root" : parent.getValue()) +
                    '}';
        }
    }
}

67,550

社区成员

发帖
与我相关
我的任务
社区描述
J2EE只是Java企业应用。我们需要一个跨J2SE/WEB/EJB的微容器,保护我们的业务核心组件(中间件),以延续它的生命力,而不是依赖J2SE/J2EE版本。
社区管理员
  • Java EE
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧