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}.


分析:

先拆成两个子链,再组合起来。 第二条链需要反转


# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    # @param head, a ListNode
    # @return nothing
    def reorderList(self, head):
        if (head==None or head.next==None):
                return head
                
        slow = fast = head
        while (fast.next!=None and fast.next.next!=None):
                slow = slow.next
                fast = fast.next.next
        
        sec = slow.next
        slow.next = None

        if (sec!=None and sec.next!=None):
            pre,cur,next = None, sec, sec.next
            while True:
                cur.next = pre
                pre = cur
                cur = next
                if cur==None:
                    break;
                next = cur.next
            sec = pre
   
        dummy = ListNode(100)
        first,curr = head,dummy
        while(sec!=None):
            curr.next = first
            curr = curr.next
            first = first.next
            curr.next = sec
            curr = curr.next
            sec = sec.next
        if first!=None:
            curr.next = first
            curr = curr.next
        curr.next = None
            
        head = dummy.next

    
   
        
        
        
        
        
        
        
        


C++

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    void reorderList(ListNode *head) {
        if(head==NULL || head->next==NULL){return;}
        
        ListNode *slow = head, *fast = head;
        while(fast->next!=NULL && fast->next->next!=NULL){
            slow = slow->next;
            fast = fast->next->next;
        }
        
        ListNode *sec = slow->next;
        slow->next = NULL;
        

        if(sec->next!=NULL){
            ListNode *next = sec->next;   
            ListNode *cur = sec;
            ListNode *pre = NULL;

            while(cur!=NULL){
                cur->next = pre;
                pre = cur;
                cur = next;
                if(cur==NULL){ break; }
                next = cur->next;
            }
            sec = pre;
        }

        ListNode *dummy = new ListNode(100);
        ListNode *first = head;
        ListNode* cur = dummy;
        while(sec!=NULL){
            cur->next = first;
            cur = cur->next;
            first = first->next;
            cur->next = sec;
            cur = cur->next;
            sec = sec->next;
        }
        if(first!=NULL){
            cur->next = first;
            cur = cur->next;
        }
        cur->next = NULL;
        
        head = dummy->next;
        
        
    }
};

总结:

1. ListNode  *cur   instead of   ListNode* cur。  编译器会默认ListNode是一种类型,而不是ListNode*

2. 同一个类型下,可以写成 ListNode *cur = head, *fast = head, 可以连写

3.  函数最好写成 general 形式的,这样其它函数也可以调用。

4.  void 的 return, 直接写成 return.。 同一行的 if 语句写成: if (fdsa) return;     if 里如果只有一个语句,不用加括号

5.  定义在括号里的变良是local 变量,出了括号后不能使用。

6. 对一个小的子函数,也一定要先判断下边界条件。

7. 在脑子里把所有情况都想好,避免都写在纸上。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值