有老哥a了第二题吗,瞪了半个小时愣是不知道怎么做。第三题是给一棵树(实际就是无向图,但是无环),每个节点有值,要求找出最长严格递增路径的长度。 public class Main { public static class Node { public int val; public int maxLoop = -1; public List<Integer> next = new ArrayList<Integer>(); public Node(int val) { thi...