24. Swap Nodes in Pairs

創(chuàng)新互聯(lián)建站專注于信州企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,商城建設(shè)。信州網(wǎng)站建設(shè)公司,為信州等地區(qū)提供建站服務(wù)。全流程按需求定制開發(fā),專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)
Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given 1->2->3->4, you should return the list as 2->1->4->3.
Your algorithm should use only constant space. You may not modify the values in the list, only nodes itself can be changed.
題目大意:
交換每兩個節(jié)點(diǎn)的位置。
代碼如下:
/**
* 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) {
ListNode* left,*right,*pre,*p;
pre = NULL;//記錄每兩個節(jié)點(diǎn)前面的那個節(jié)點(diǎn)
p = head;
while(p !=NULL && p->next != NULL)
{
left = p;
right = p->next;
left->next = right->next;
right->next = left;
if(pre != NULL)
{
pre->next = right;
}
else//鏈表的頭兩個節(jié)點(diǎn)交換位置
{
head = right;
}
pre = left;
p = left->next;
}
return head;
}
};2016-08-12 23:51:00
文章題目:leetCode24.SwapNodesinPairs鏈表
當(dāng)前網(wǎng)址:http://www.chinadenli.net/article42/gjodhc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制網(wǎng)站、外貿(mào)建站、響應(yīng)式網(wǎng)站、網(wǎng)站營銷、動態(tài)網(wǎng)站、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)