Reorder List

Given a singly linked list LL0L1→…→Ln-1Ln,
reorder it to: L0LnL1Ln-1L2Ln-2→…

You must do this in-place without altering the nodes' values.

For example,
Given {1,2,3,4}, reorder it to {1,4,2,3}.

把后面的部分插入前面。

中心思想,将链表重中间断开,然后把后面的链表部分倒序,之后把后面链表的头节点依次插入到head链表里面。

其代码如下。

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode* reverseList(struct ListNode* head);
int LengthList(struct ListNode* head);
void reorderList(struct ListNode* head)
{
	if(head==NULL||head->next==NULL)
		return ;
	int mid;
    int length;
    struct ListNode* pCurrent=head;
	length=LengthList(pCurrent);
    mid=(length+1)/2; //3 应该是第2个,以后也是在后面一个
    //找到中间节点,分成两条链表,//mid 后面哪一个开始
	struct ListNode* pCurrentmid=head;
	struct ListNode* pCurrentmidFront;
	while(mid--)
	{
	  pCurrentmidFront=pCurrentmid;
      pCurrentmid=pCurrentmid->next;
	  //mid=1,最后一个设置为null
	}
	
	struct ListNode* pCurrentMidafter=pCurrentmid; //3--->1
    pCurrentmidFront->next=NULL;  //让他变成两个链表
	//翻转pCurrentMidafter
	pCurrentMidafter=reverseList(pCurrentMidafter);
	//DisplayList(pCurrentMidafter);
	//DisplayList(head);
	
// 	//将翻转后的链表插入到head链表中..
	pCurrent=head;
	
	while(pCurrent!=NULL&&pCurrentMidafter!=NULL)
	{
        pCurrentmidFront=pCurrentMidafter;
       pCurrentMidafter=pCurrentMidafter->next;
	   //插入
	  pCurrentmidFront->next=pCurrent->next;
      pCurrent->next=pCurrentmidFront;  //放回原位
      pCurrent=pCurrentmidFront->next;
	}
}
int LengthList(struct ListNode* head) 
{
	if(head==NULL)
		return 0;

	int length=0;
	struct ListNode* pCurrent=head;
	while(pCurrent!=NULL)
	{
		length++;
		pCurrent=pCurrent->next;
	}
	//free(pCurrent);
	return length;
}

struct ListNode* reverseList(struct ListNode* head) {

	struct ListNode* newhead;
	newhead=NULL;
	//这样就不需要翻转了
	if (head==NULL||head->next==NULL)
	{
		return head;
	}
	struct ListNode* pCurrent=head;  //一样的点
	while(pCurrent!=NULL)
	{
		struct ListNode* tmp=pCurrent;
		pCurrent=pCurrent->next;
		tmp->next=newhead;   //把节点放在节点前面,插入到链表的最前端
		newhead=tmp;
	}
	return newhead;

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值