leetcode面试题02.07.链表相交
思路:哈希表解法,通过建立集合类型的哈希表,先将链表A的结点都储存进集合中,在遍历链表B依次对比,若在哈希表中出现则此结点为相交结点。
#include <iostream>
#include <unordered_set>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
class Solution {
public:
ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
unordered_set<ListNode *> visited; //结点集合哈希表
ListNode *temp = headA;
while (temp != nullptr) {
visited.insert(temp);
temp = temp->next;
}
temp = headB;
while (temp != nullptr) {
if (visited.count(temp)) {
return temp;
}
temp = temp->next;
}
return nullptr;
}
};
LeetCode19删除链表的倒数第n个结点
思路:
- 双指针
- 栈
- 双指针法:头一遍遍历整个链表统计出链表的长度end,第二遍用新结点p记录head的信息初始化val为0,first从头开始直到end-n停止然后另结点temp->next = temp->next->next,之后返回链表头结点。
- 栈:简单明了就是将每个元素都入栈,然后每出栈一个n就减一,直到n等于0,然后另temp->next = temp -> next ->next.
#include <iostream>
#include <stack>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode() : val(0), next(nullptr) {}
ListNode(int x) : val(x), next(nullptr) {}
ListNode(int x, ListNode *next) : val(x), next(next) {}
};
//双指针法
class Solution {
public:
ListNode *removeNthFromEnd(ListNode *head, int n) {
int first = 1, end = 1;
ListNode *temp = head;
while (temp != nullptr) {
temp = temp->next;
end++;
}
int i = end - n;
ListNode *p = new ListNode(0, head); //新建一个结点结构存储head的地址信息val初始化为0
temp = p;
while (temp != nullptr) {
if (first == i) {
temp->next = temp->next->next;
break;
}
temp = temp->next;
first++;
}
ListNode *ans = p -> next;
delete p;
return ans;
}
};
//栈
class Solutions {
public:
ListNode* removeNthFromEnd(ListNode* head, int n) {
ListNode* dummy = new ListNode(0, head);
stack<ListNode*> stk;
ListNode* cur = dummy;
while (cur) {
stk.push(cur);
cur = cur->next;
}
for (int i = 0; i < n; ++i) {
stk.pop();
}
ListNode* prev = stk.top();
prev->next = prev->next->next;
ListNode* ans = dummy->next;
delete dummy;
return ans;
}
};
LeetCode24两两交换表中结点
思路:迭代法,储存三个结点的信息,将要交换的两个结点,以及前一个结点。设分别为p1,p2,p3,那么就需要将p2->next = p3 -> next,p3->next = p2,p1->next = p3 。
struct ListNode {
int val;
ListNode *next;
ListNode() : val(0), next(nullptr) {}
ListNode(int x) : val(x), next(nullptr) {}
ListNode(int x, ListNode *next) : val(x), next(next) {}
};
//迭代
class Solution {
public:
ListNode *swapPairs(ListNode *head) {
if (head == nullptr) {
return head;
}
ListNode *dummyHead = new ListNode(0);
dummyHead->next = head;
ListNode *temp = dummyHead;
while (temp->next != nullptr && temp->next->next != nullptr) {
//记录三个结点分别是两个需要交换的结点和其前一个结点
ListNode *node1 = temp->next;
ListNode *node2 = temp->next->next;
temp->next = node2;
node1->next = node2->next;
node2->next = node1;
temp = node1;
}
return dummyHead->next;
}
};
LeetCode142环形链表
思路:哈希表,同样是建立一个集合哈希表,记录遍历过程中的每一个结点,当遍历到相同的结点set.count(temp) = true,就返回当前结点。
#include <iostream>
#include <unordered_set>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
class Solution {
public:
ListNode *detectCycle(ListNode *head) {
unordered_set<ListNode*> s;
ListNode *temp = head;
while(temp != nullptr) {
if(s.count(temp)) {
return temp;
}
s.insert(temp);
temp = temp -> next;
}
return nullptr;
}
};
964

被折叠的 条评论
为什么被折叠?



