如何求单链表的前驱和后继,另外我也是不是很懂它们是什么意思,
如何求单链表的前驱和后继,另外我也是不是很懂它们是什么意思,请教大神
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
typedef int ElemType;
typedef struct node
{
ElemType data;
struct node *next;
}node,*LinkList;
//1.链表L初始化
LinkList creat()
{
LinkList L;
L=(LinkList)malloc(sizeof(node));
if(L)
L->next=NULL;
return L;
}
//8.查找值为e的直接前驱结点p
void *Find(LinkList L,int e)
{
LinkList p;
if (p->next==e) return NULL; //检测第一个结点
for (p=L;p->next&&p->next!=e;p=p->next);
if (p->next==e) return p;
else return NULL;
}
//9.查找值为e的直接后继结点p
void *NextElem(LinkList L,int e)
{
LinkList p;
for(p=L->next;p&&p!=e;p=p->next);
if (p) p=p->next;
return p;
}
我是这么理解的