leetcode practice

day4:

24 swap nodes in pairs:

class Solution {
public:
    ListNode* swapPairs(ListNode* head) {
        ListNode* newhead = new ListNode(0);
        newhead->next = head;
        ListNode* cur = newhead;
        while(cur->next && cur->next->next){
            ListNode* temp1 = cur->next;
            ListNode* temp2 = cur->next->next->next;
            cur->next = cur->next->next;
            cur->next->next = temp1;
            cur->next->next->next = temp2;

            cur = cur->next->next;
        }
        return newhead->next;
    }
};

19 Remove Nth Node from end: 

class Solution {
public:
    ListNode* removeNthFromEnd(ListNode* head, int n) {
        ListNode* newhead = new ListNode(0);
        newhead->next = head;
        ListNode* slow = newhead;
        ListNode* fast = newhead;
        while(n+1 && fast) {
            fast = fast->next;
            n--;
        }
        while(fast){
            fast = fast->next;
            slow = slow->next;
        }
        ListNode* temp = slow->next;
        slow->next = slow->next->next;
        delete temp;

        return newhead->next;
    }
};

 160 Intersection of two linked list:

class Solution {
public:
    ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
        int lengthA = 0;
        int lengthB = 0;
        ListNode *tempA = headA;
        ListNode *tempB = headB;
        while(tempA){
            lengthA++;
            tempA = tempA->next;
        }
        while(tempB){
            lengthB++;
            tempB = tempB->next;
        }
        ListNode *newheadA = headA;
        ListNode *newheadB = headB;
        int gap = 0;
        if(lengthA > lengthB){
            gap = lengthA-lengthB;
            while(gap-- && newheadA){
                newheadA = newheadA->next;
            }
        }
        else if(lengthB > lengthA){
            gap = lengthB-lengthA;
            while(gap-- && newheadB){
                newheadB = newheadB->next;
            }
        }
        while (newheadA != NULL) {
            if (newheadA == newheadB) {
                return newheadA;
            }
            newheadA = newheadA->next;
            newheadB = newheadB->next;
        }
        return NULL;

    }
};

142 Linked list cycle:

class Solution {
public:
    ListNode *detectCycle(ListNode *head) {
        ListNode *slow = head;
        ListNode *fast = head;
        while(fast && fast->next){
            slow = slow->next;
            fast = fast->next->next;
            if(slow == fast){
                ListNode *index1 = slow;
                ListNode *index2 = head;
                while(index1 != index2){
                    index1 = index1->next;
                    index2 = index2->next;
                }
                return index1;
            }
        }
        return nullptr;
    }
};

 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值