程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> [LeedCode OJ]#24 Swap Nodes in Pairs

[LeedCode OJ]#24 Swap Nodes in Pairs

編輯:C++入門知識

[LeedCode OJ]#24 Swap Nodes in Pairs


 

 

題意:

給你一個鏈表,要你對每兩個相鄰的節點進行交換

 

思路:

鏈表的結點不用想都知道通過next的指向來找,交換也是如此,通過改變指向就行了,但是注意要將尾結點的next指向空,否則要超時

 

 

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* swapPairs(ListNode* head) {
        if(head==nullptr || head->next==nullptr)
        return head;
        ListNode *newlist = new ListNode(0);
        ListNode *ptr = newlist;
        ListNode *cur = head;
        while(cur && cur->next)
        {
        	ListNode *pnext = cur->next->next;
        	ptr->next = cur->next;
        	ptr = ptr->next;
        	
        	ptr->next = cur;
        	ptr = ptr->next;
        	
        	ptr->next = nullptr;
        	cur  = pnext;
		}
		if(cur) ptr->next = cur;
		return newlist->next;
    }
};


 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved