回文结构
对于一个链表,请设计一个时间复杂度为O(n),额外空间复杂度为O(1)的算法,判断其是否为回文结构。给定一个链表的头指针A,请返回一个bool值,代表其是否为回文结构。保证链表长度小于等于900。OJ链接
测试样例:
- 先找到链表的中间节点,要考虑奇偶!
- 逆置后半段链表
- 两个指针比较两个链表
- 结束条件:当某个指针为NULL时,遍历就结束。
/*
struct ListNode {
int val;
struct ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};*/
class PalindromeList {
public:
struct ListNode* reverseList(struct ListNode* head) {
struct ListNode* cur = head;
struct ListNode* newhead = NULL;
while (cur)
{
struct ListNode* next = cur->next;
//头插
cur->next = newhead;
newhead = cur;
cur = next;
}
return newhead;
}
struct ListNode* middleNode(struct ListNode* head) {
struct ListNode* slow = head,*fast = head;
while(fast->next && fast)
{
fast=fast->next->next;
slow=slow->next;
}
return slow;
}
bool chkPalindrome(ListNode* head) {
struct ListNode* mid = middleNode(head);
struct ListNode* rhead = reverseList(mid);
while(rhead && head)
{
if(rhead->val != head->val)
{
return false;
}
rhead = rhead->next;
head = head->next;
}
return true;
}
};
随机链表的复制
给你一个长度为
n
的链表,每个节点包含一个额外增加的随机指针random
,该指针可以指向链表中的任何节点或空节点。构造这个链表的 深拷贝。 深拷贝应该正好由
n
个 全新 节点组成,其中每个新节点的值都设为其对应的原节点的值。新节点的next
指针和random
指针也都应指向复制链表中的新节点,并使原链表和复制链表中的这些指针能够表示相同的链表状态。复制链表中的指针都不应指向原链表中的节点 。例如,如果原链表中有
X
和Y
两个节点,其中X.random --> Y
。那么在复制链表中对应的两个节点x
和y
,同样有x.random --> y
。返回复制链表的头节点。
用一个由
n
个节点组成的链表来表示输入/输出中的链表。每个节点用一个[val, random_index]
表示:
val
:一个表示Node.val
的整数。random_index
:随机指针指向的节点索引(范围从0
到n-1
);如果不指向任何节点,则为null
。你的代码 只 接受原链表的头节点
head
作为传入参数。
单链表+随机指针,随机指向链表任意节点或者空。
/**
* Definition for a Node.
* struct Node {
* int val;
* struct Node *next;
* struct Node *random;
* };
*/
struct Node* copyRandomList(struct Node* head)
{
//第一步
struct Node* cur=head;
while(cur)
{
struct Node*copy=(struct Node*)malloc(sizeof(struct Node));
copy->val=cur->val;
copy->next=cur->next;
cur->next=copy;
cur=cur->next->next;
//cur=copy->next;
}
//第二步
cur=head;
while(cur)
{
struct Node*copy=cur->next;
if(cur->random == NULL)
{
copy->random=NULL;
}
else
{
copy->random=cur->random->next;//易错
}
cur=copy->next;
//cur=cur->next->next;
}
//第三步
cur=head;
struct Node*newhead=NULL;
struct Node*tail=NULL;
while(cur)
{
struct Node*copy=cur->next;
if(newhead == NULL)
{
newhead=tail=copy;
}
else
{
tail->next=copy;
tail=tail->next;
}
cur->next=copy->next;
cur=copy->next;
}
//最后一个节点本来就指向NULL
return newhead;
}
法二:(不建议使用)
【找具体位置第几个】
时间复杂度太高了,不好用。