Leetcode 4——Partition List
Posted 真的是从入门开始
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 4——Partition List相关的知识,希望对你有一定的参考价值。
Problems:
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x. You should preserve the original relative order of the nodes in each of the two partitions. For example, Given 1->4->3->2->5->2 and x = 3, return 1->2->2->4->3->5
实现一个patition()方法,里面两个参数,一个链表,一个数字,要求把链表中小于该数字和大于等于该数字的值按照原顺序形成一个新链表。
其实这是一个比较简单的题目,但是对于从头开始学编程的我用了两次就A掉了,还是比较高兴的,虽然这个程序的效率不是很高,哈哈。
用两个数组存其中的大小数,然后分别放到链表里面就好了。
Solution:
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ public class Solution { public ListNode partition(ListNode head, int x) { ListNode l3=head; int n=0; while(l3!=null) { l3=l3.next; n++; } l3=head; int[] a=new int[n]; int[] b=new int[n]; int small=0,big=0; while(l3!=null) { if(l3.val<x) { a[small]=l3.val; small++; l3=l3.next; } else { b[big]=l3.val; big++; l3=l3.next; } } for(int i=0;i<small;i++) { if(i==0) { l3=new ListNode(a[i]); head=l3; } else { l3.next=new ListNode(a[i]); l3=l3.next; } } for(int i=0;i<big;i++) { if(small==0) { l3=new ListNode(b[i]); head=l3; small=1; continue; } l3.next=new ListNode(b[i]); l3=l3.next; if(i==big-1) { l3.next=new ListNode(b[i]); l3.next=null; } } return head; } }
以上是关于Leetcode 4——Partition List的主要内容,如果未能解决你的问题,请参考以下文章
数组拆分 I array-partition leetcode python
leetcode:Partition Array by odd and even
Leetcode#561. Array Partition I(数组拆分 I)