摘要: 迭代:public class Solution { public ListNode reverseList(ListNode head) { ListNode pre = null; while (head != null) { ... 阅读全文
posted @ 2017-04-26 13:09 zhayujie 阅读(131) 评论(0) 推荐(0) 编辑