class Solution { public ListNode partition(ListNode head, int x) { ListNode l1=new ListNode(0); ListNode l2=new ListNode(0); ListNode pre=new ListNode(0); pre.next=head; ListNode p=pre,pl1=l1,pl2=l2; while(p!=null&&p.next!=null) { if(p.next.val
本文共 357 字,大约阅读时间需要 1 分钟。
class Solution { public ListNode partition(ListNode head, int x) { ListNode l1=new ListNode(0); ListNode l2=new ListNode(0); ListNode pre=new ListNode(0); pre.next=head; ListNode p=pre,pl1=l1,pl2=l2; while(p!=null&&p.next!=null) { if(p.next.val
转载于:https://www.cnblogs.com/asuran/p/7604781.html