c_cpp 在链表中查找循环的长度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 在链表中查找循环的长度相关的知识,希望对你有一定的参考价值。
//https://www.geeksforgeeks.org/find-length-of-loop-in-linked-list/
#include<iostream>
#include<list>
using namespace std;
struct linked_list {
int data;
struct linked_list* next;
};
typedef struct linked_list node;
node* insert(node* head, int n) {
node* list = (node*)malloc(sizeof(node*));
list->data=n;
list->next=head;
head=list;
return head;
}
int CountLoop (node* n) {
int len = 1;
node* temp = n;
while (temp->next != n){
len++;
temp = temp->next;
}
return len;
}
int DetectLoop (node* head) {
node *slow=head, *fast=head,*ptr;
while (slow && fast && fast->next) {
slow = slow->next;
fast = fast->next->next;
if (slow == fast)
return CountLoop (slow);
}
}
int main() {
int n;
node* head = NULL;
while (true) {
cout<< "Enter the element, enter -9 to stop: ";
cin>>n;
if (n==-9)
break;
else
head = insert(head,n);
}
head->next->next->next->next->next = head->next;
cout<< "Length of Loop is " << DetectLoop(head);
}
以上是关于c_cpp 在链表中查找循环的长度的主要内容,如果未能解决你的问题,请参考以下文章
数据结构:单向链表系列5--在链表中查找元素
c_cpp 在链表中排列辅音和元音节点
使用 Hare and Tortoise 方法在链表中检测循环
使用java编写两个方法min和max在链表中查找最大值和最小值,但输入列表是整数数组
在链表中递归插入节点,给定位置和值
c_cpp 检测链表中的循环