reorder_list

Given a singly linked list L: L 0→L 1→…→L n-1→L n,
reorder it to: L 0→L n →L 1→L n-1→L 2→L n-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}.

先找到链表中间结点,之后对中间结点右边的半部分链表倒序,再把这部分链表链接到左半部分的链表。

#include<iostream>
#include<malloc.h> 
using namespace std;

 struct ListNode {
      int val;
      ListNode *next;
      ListNode(int x) : val(x), next(NULL) {}
  };
//找到中间节点,这个结点不需要变动  
class Solution {
public:

    //反转链表 
    ListNode* reverse(ListNode* head){

        if(head==NULL) return head;

        ListNode* p=head;
        ListNode*q=p->next;
        p->next=NULL;
        ListNode*temp=NULL;

        //因为最后要留下一个头指针,这里不让temp移动到NULL,不然
        //就丢了对新的head指针 
        while(temp->next!=NULL){
            temp=q->next;
            q->next=p;
            p=q;
            q=temp; 
        }       

        q->next=p;
        return q;
    } 

    void reorderList(ListNode *head) {
      // cout<<"can"<<endl; 
        ListNode* slow=head;
        ListNode* fast=head;

        while(fast!=NULL && fast->next!=NULL && fast->next->next!=NULL){

            slow=slow->next;

            fast=fast->next->next;

        }

        if(fast->next!=NULL){
            slow=slow->next;
            fast=fast->next;
        }

        //slow 移动到一半 fast移动到最后一个元素

        ListNode* start=slow->next;
        slow->next=NULL;

        //后半部分链表倒转 
        start=reverse(start);

        ListNode*temp=NULL;
        ListNode* left=head;

        //分开后,左边的元素总是多与右边的元素
        //分割算法决定的,所以只需要判断右边的表
        //是否到终点 
        while(start!=NULL){
            temp=left->next;    
            left->next=start;
            start=start->next;
            left=left->next;
        } 

        //return head; 
    }

    void printtest(){
        cout<<"This is a test"<<endl;
    }
};
    //反转链表 
    ListNode* reverse(ListNode* head){

//      cout<<head->val<<endl; 
        if(head==NULL || head->next==NULL) 
            return head;

        ListNode* p=head;
        ListNode*q=p->next;
        ListNode*temp=q;
        p->next=NULL;


        //因为最后要留下一个头指针,这里不让temp移动到NULL,不然
        //就丢了对新的head指针 
        while(temp->next!=NULL){
            temp=q->next;
            q->next=p;
            p=q;
            q=temp; 
        }       

        q->next=p;

            //cout<<q->val<<endl;
        return q;
    } 

    void reorderList(ListNode *head) {
       //  cout<<"can"<<endl; 
       if(head==NULL || head->next==NULL||head->next->next==NULL)
            return;
        ListNode* slow=head;
        ListNode* fast=head;

        while(fast!=NULL && fast->next!=NULL && fast->next->next!=NULL){

            slow=slow->next;

            fast=fast->next->next;

        }

        if(fast->next!=NULL){
            slow=slow->next;
            fast=fast->next;
        }

        //slow 移动到一半 fast移动到最后一个元素

        ListNode* start=slow->next;
        slow->next=NULL;

        //后半部分链表倒转 
        start=reverse(start);

        ListNode*temp=NULL;
        ListNode* left=head;
        ListNode*right=start; 

        //分开后,左边的元素总是多与右边的元素
        //分割算法决定的,所以只需要判断右边的表
        //是否到终点 
        while(start!=NULL){
            temp=left->next;    
            left->next=start;
            right=left->next;

            //指针向后移动 
            start=start->next;


            right->next=temp;
            left=left->next->next;
        } 

        //return head; 
    }

    void printtest(){
        cout<<"This is a test"<<endl;
    }
int main(){
    cout<<"-----------main_____----------------------"<<endl;
    ListNode*root=(ListNode*)malloc(sizeof(ListNode*));
    root->val=1;
    ListNode t2=ListNode(2);
    root->next=&t2;
    ListNode t3=ListNode(3);
    ListNode t4=ListNode(4);
    root->next->next=&t3;
    root->next->next->next=&t4; 
    ListNode t5=ListNode(5);
    root->next->next->next->next=&t5;
        ListNode t6=ListNode(6);
    ListNode t7=ListNode(7);
//  root->next->next->next->next->next=&t6;
//  root->next->next->next->next->next->next=&t7;
//  Solution s=Solution();
    //cout<<"can"<<endl; 
    //s.printtest();
    reorderList(root);
//  cout<<"can"<<endl; 
    while(root!=NULL){
        cout<<root->val<<endl;
        root=root->next;
    }

//  cout<<root->next->val;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值