摘要:
动态代理 public class Main { public static void main(String[] args) { final ProxyMapper mapper = (ProxyMapper) Proxy.newProxyInstance(Main.class.getClassL 阅读全文
摘要:
二叉树遍历 遍历命名 根据访问结点操作发生位置命名: ① NLR:前序遍历(Preorder Traversal 亦称(先序遍历)) ——访问根结点的操作发生在遍历其左右子树之前。 ② LNR:中序遍历(Inorder Traversal) ——访问根结点的操作发生在遍历其左右子树之中(间)。 ③ 阅读全文