86、分隔链表

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/benzhaohao/article/details/86630548

给定一个链表和一个特定值 x,对链表进行分隔,使得所有小于 x 的节点都在大于或等于 x 的节点之前。

你应当保留两个分区中每个节点的初始相对位置。

示例:

输入: head = 1->4->3->2->5->2, x = 3
输出: 1->2->2->4->3->5

思路 :使用双链表解决,建立两个链表,其中一个链表存储<x的结点,另一个链表存储>=x的结点,然后合并两个链表

public ListNode partition(ListNode head,int x) {
		//使用双链表解决,一个链表包含<x的元素,另一个链表包含>=x的元素,然后合并
		ListNode dummyhead1=new ListNode(0);//建立新链表
		ListNode dummyhead2=new ListNode(0);
		ListNode node1=dummyhead1;
		ListNode node2=dummyhead2;
		while(head!=null) {
			if(head.val<x) {   //如果原链表中元素<x
			node1.next=head;
			node1=node1.next;
			head=head.next;
			node1.next=null;
		}
			else {    //如果原链表中元素>=x
				node2.next=head;
				node2=node2.next;
				head=head.next;
				node2.next=null;
			}
		}
		node1.next=dummyhead2.next;
		return dummyhead1.next;
		
	}

猜你喜欢

转载自blog.csdn.net/benzhaohao/article/details/86630548