首页 > 编程语言 > 详细

leetcode(java)

时间:2019-02-25 21:57:37      阅读:178      评论:0      收藏:0      [点我收藏+]
86 
class
Solution { public ListNode partition(ListNode head, int x) { ListNode lowheader=new ListNode(0); ListNode low=lowheader; ListNode highheader=new ListNode(0); ListNode high=highheader; while(head!=null){ if(head.val<x){ low.next=head; head=head.next; low=low.next; low.next=null; }else{ high.next=head; head=head.next; high=high.next; high.next=null; } } low.next=highheader.next; return lowheader.next; } }

 

leetcode(java)

原文:https://www.cnblogs.com/yttas/p/10433674.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!