力扣:160. 相交链表

力扣:160. 相交链表

力扣:160. 相交链表 

1、暴力解

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
        ListNode* cru;
        while(headA!=NULL)
        {
            cru=headB;
            while(cru!=NULL)
            {
                if(headA==cru) return headA;
                cru=cru->next;
            }
            headA=headA->next;
        }
        return NULL;
    }
};

上一篇:【CrackMe】160道CrackMe--001 Acid burn 做完这160个练习题,90%的软件你就能搞定了


下一篇:HA: Chakravyuh Vulnhub Walkthrough