摘要: 描述: Given a linked list, swap every two adjacent nodes and return its head. For example,Given 1->2->3->4, you should return the list as 2->1->4->3. Yo 阅读全文
posted @ 2017-08-19 14:48 孤独风中一匹狼 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 题目描述: You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes 阅读全文
posted @ 2017-08-19 14:42 孤独风中一匹狼 阅读(198) 评论(0) 推荐(0) 编辑