【leetcode】143.(Medium)Reorder List

解題思路: 蠻力循環 提交代碼: class Solution { public void reorderList(ListNode head) { if(head==null||head.next==null||head.next.next==null) return; int len=1; ListNode p1=head,p2=head;
相關文章
相關標籤/搜索