首页 > 其他 > 详细

86. 分隔链表

时间:2019-11-03 16:53:05      阅读:66      评论:0      收藏:0      [点我收藏+]

题目描述:

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.

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */

代码:

class Solution {
public:
    ListNode *partition(ListNode *head, int x) {

    	if(head == nullptr)
    		return head;
    	ListNode dummy1 = ListNode(-1);
    	ListNode dummy2 = ListNode(1);
    	ListNode *last1 = &dummy1;
    	ListNode *last2 = &dummy2;
    	ListNode *p = head;
    	while(p!=nullptr)
    	{
    		ListNode *next = p->next;
    		p->next = nullptr;
    		if(p->val<x)
    		{
    			last1->next = p;
    			last1 = p;
    		}
    		else
    		{
    			last2->next = p;
    			last2 = p;
    		}
    		p = next;
    	}
    	last1->next = dummy2.next;
    	return dummy1.next;       
    }
};

 

86. 分隔链表

原文:https://www.cnblogs.com/zjuhaohaoxuexi/p/11787685.html

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