摘要: /* 查看网上的思路有两种: 1.每次取两边的数,然后进行比较 2.取数的倒置数,进行比较 */ public boolean isPalindrome1(int x) { if (x=10) { len*=10; temp/=10; ... 阅读全文
posted @ 2018-02-06 19:47 stAr_1 阅读(169) 评论(0) 推荐(0) 编辑
摘要: /* 重点还是反转链表 思路就是中间的反转,然后两头接上 */ public ListNode reverseBetween(ListNode head, int m, int n) { if (head==null||m>=n) return head; int count = 1; ListNode sta =... 阅读全文
posted @ 2018-02-06 18:24 stAr_1 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 反转数字请看:http://www.cnblogs.com/stAr-1/p/8423922.html 阅读全文
posted @ 2018-02-06 13:37 stAr_1 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 重点是: 1.快慢指针找到链表的中点。快指针一次走两步,慢指针一次走一步,分清奇偶数情况。 2.反转链表。pre代表已经反转好的,每次将当前节点指向pre 阅读全文
posted @ 2018-02-06 13:36 stAr_1 阅读(107) 评论(0) 推荐(0) 编辑