zoukankan      html  css  js  c++  java
  • LeetCode Reorder List

    struct ListNode {
    	int val;
    	ListNode *next;
    	ListNode(int x) : val(x), next(NULL) {}
    };
    
    class Solution {
    public:
    	void reorderList(ListNode* head)
    	{
    		if(head == nullptr) return;
    		int size = 0;
    		ListNode *ptr = head;
    		while(ptr != nullptr)
    		{
    			size++;
    			ptr = ptr->next;
    		}
    		if(size <= 2) return;
    		int breakpoint = (size + 1) / 2;
    		int i = 0;
    		ptr = head;
    		while( i++ < breakpoint)
    		{
    			ptr = ptr->next;
    		}
    		ListNode *ptr2 = head;
    		while(ptr2!= nullptr && ptr2->next != ptr)
    			ptr2 = ptr2->next;
    		if(ptr2 != nullptr)
    			ptr2->next = nullptr;
    		
    		ListNode* newheadof2ndPart = reverseLinkedList(ptr);
    		ptr = head;
    		for(i = 0; i< breakpoint && ptr != nullptr && newheadof2ndPart != nullptr; i++)
    		{
    			ListNode*ptmp = ptr->next;
    			ListNode*pnextnewhead = newheadof2ndPart->next;
    			ptr -> next = newheadof2ndPart;
    			newheadof2ndPart->next = ptmp;
    			ptr = ptmp;
    			newheadof2ndPart = pnextnewhead;
    		}
    	}
    	
    	ListNode* reverseLinkedList(ListNode* head)
    	{
    		if(head == nullptr) return nullptr;
    		ListNode* newhead = reverseLinkedList(head->next);
    		if(head-> next != nullptr)
    		{
    			head->next->next = head; //Error, 一定要搞清楚到底是哪个next哦
    		}
    		if(newhead == nullptr) newhead = head;
    		head->next = nullptr;
    		
    		return newhead;
    	}
    	
    };
    
  • 相关阅读:
    Centos7 ifconfig命令找不到
    request的各种方法
    linux开放端口
    easyui datagrid 部分参数
    设置tomcat内存
    tomcat做成系统服务
    Meta-analysis with complex research designs: dealing with dependence from multiple measures and multiple group comparisons
    多重校正
    DTI
    learning source archive
  • 原文地址:https://www.cnblogs.com/whyandinside/p/5294258.html
Copyright © 2011-2022 走看看