import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * } */ public class Solution { /** * 使用了棧解題 * @param head1 ListNode類 * @param head2 ListNode類 * @return ListNode類 */ public ListNode addInList (ListNode head1, ListNode h...