判断单链表中是否存在环
2023-07-06
#include “stdafx.h”
typedef char eleType; // 定义链表中的数据类型
typedef struct listnode // 定义单链表结构
eleType data;
struct listnode *next;
node;
node *create(int n) // 创建单链表,n为节点个数
node *p = (node *)malloc(sizeof(node));
node *head = p; head->data = ‘A’;
for(int i=’B\; i