摘要: class Solution { public ListNode addTwoNumbers(ListNode l1, ListNode l2) { ListNode head=new ListNode(0),temp=head; int carry = 0; while (l1!=null||l2!=null) { int x=(l1!=nul... 阅读全文
posted @ 2019-05-17 21:05 xiaomi_zhou 阅读(100) 评论(0) 推荐(0) 编辑