1、题目描述 2、算法分析 要求找出两个单链表相交的起始结点。且链表中不存在环。 重点是第一个,使用Set集合遍历第一个链表,并把第一个链表的元素添加到Set集合中。 然后继续遍历第二个链表,判断原来的集合中是否包含第一个链表中的元素。 使用boolean b = set.contains(object o); 有一点注意: Set set = new HashSet():Has
【题目】 Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An example is the root-to-leaf path 1->2->3 which represents the number 123. Find the