单链表问题
本帖最后由 孤世星辰 于 2021-5-21 13:03 编辑快速找到未知长度单链表的中间节点的代码
问题在28和81行
#include "stdio.h"
#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0
typedef int Status; /* Status是函数的类型,其值是函数结果状态代码,如OK等 */
typedef int ElemType; /* ElemType类型根据实际情况而定,这里假设为int */
typedef struct Node
{
ElemType data;
struct Node *next;
}Node;
typedef struct Node *LinkList; /* 定义LinkList */
Status visit(ElemType c)
{
printf("%d ",c);
return OK;
}
/* 初始化顺序线性表 */
Status InitList(LinkList *L)
{
*L=(LinkList)malloc(sizeof(Node)); //()malloc前面这个括号为啥有时候有,有时候无,有时候是这样的(linklist *),还有为啥是*L不是L
/* 产生头结点,并使L指向此头结点 */
if(!(*L)) /* 存储分配失败 */
{
return ERROR;
}
(*L)->next=NULL; /* 指针域为空 */
return OK;
}
/* 初始条件:顺序线性表L已存在。操作结果:返回L中数据元素个数 */
int ListLength(LinkList L)
{
int i=0;
LinkList p=L->next; /* p指向第一个结点 */
while(p)
{
i++;
p=p->next;
}
return i;
}
/* 初始条件:顺序线性表L已存在 */
/* 操作结果:依次对L的每个数据元素输出 */
Status ListTraverse(LinkList L)
{
LinkList p=L->next;
while(p)
{
visit(p->data);
p = p->next;
}
printf("\n");
return OK;
}
/*随机产生n个元素的值,建立带表头结点的单链线性表L(尾插法) */
void CreateListTail(LinkList *L, int n)
{
LinkList p,r;
int i;
srand(time(0)); /* 初始化随机数种子 */
*L = (LinkList)malloc(sizeof(Node)); /* L为整个线性表 */
r=*L; //为啥这个r是尾结点?我咋感觉r像是头结点
/* r为指向尾部的结点 */
for (i=0; i < n; i++)
{
p = (Node *)malloc(sizeof(Node)); /*生成新结点 */
p->data = rand()%100+1; /*随机生成100以内的数字 */
r->next=p; /* 将表尾终端结点的指针指向新结点 */
r = p; /* 将当前的新结点定义为表尾终端结点 */
}
r->next = NULL; /* 表示当前链表结束 */
// 创建有环链表
//r->next = p;
}
Status GetMidNode(LinkList L, ElemType *e)
{
LinkList search, mid;
mid = search = L;
while (search->next != NULL)
{
//search移动的速度是 mid 的2倍
if (search->next->next != NULL)
{
search = search->next->next;
mid = mid->next;
}
else
{
search = search->next;
}
}
*e = mid->data;
return OK;
}
int main()
{
LinkList L;
Status i;
char opp;
ElemType e;
int find;
int tmp;
i=InitList(&L);
printf("初始化L后:ListLength(L)=%d\n",ListLength(L));
printf("\n1.查看链表 \n2.创建链表(尾插法) \n3.链表长度 \n4.中间结点值 \n0.退出 \n请选择你的操作:\n");
while(opp != '0')
{
scanf("%c",&opp);
switch(opp)
{
case '1':
ListTraverse(L);
printf("\n");
break;
case '2':
CreateListTail(&L,20);
printf("整体创建L的元素(尾插法):\n");
ListTraverse(L);
printf("\n");
break;
case '3':
//clearList(pHead); //清空链表
printf("ListLength(L)=%d \n",ListLength(L));
printf("\n");
break;
case '4':
//GetNthNodeFromBack(L,find,&e);
GetMidNode(L, &e);
printf("链表中间结点的值为:%d\n", e);
//ListTraverse(L);
printf("\n");
break;
case '0':
exit(0);
}
}
}
//()malloc前面这个括号为啥有时候有,有时候无,有时候是这样的(linklist *),还有为啥是*L不是L
只有C++才需要强制类型转换,才需要括号
星号用来匹配数据类型,因为参数有时候是一级指针有时候是二级指针
*L 是要修改传入的那个参数
为啥这个r是尾结点?我咋感觉r像是头结点
r 任何时候都指向最后的那个节点 人造人 发表于 2021-5-21 13:57
//()malloc前面这个括号为啥有时候有,有时候无,有时候是这样的(linklist *),还有为啥是*L不是L
只有C ...
*L = (LinkList)malloc(sizeof(Node));
这个(linklist)是什么意思呢跟(linklist *)一样么 孤世星辰 发表于 2021-5-21 14:57
*L = (LinkList)malloc(sizeof(Node));
这个(linklist)是什么意思呢跟(linklist *)一样么
typedef struct Node *LinkList; /* 定义LinkList */
肯定不一样了
LinkList 就是 struct Node *
LinkList * 就是 struct Node **
人造人 发表于 2021-5-21 15:07
typedef struct Node *LinkList; /* 定义LinkList */
肯定不一样了
上面是结构体指针,下面struct Node **是啥??结构体二级指针?? 孤世星辰 发表于 2021-5-21 15:15
上面是结构体指针,下面struct Node **是啥??结构体二级指针??
对,二级指针,指向指针的指针
人造人 发表于 2021-5-21 15:23
对,二级指针,指向指针的指针
/*初始化循环链表*/
void ds_init(node **pNode) //这是一个元素么
{
int item;
node *temp;
node *target; //这是指针吧
printf("输入结点的值,输入0完成初始化\n");
while(1)
{
scanf("%d", &item);
fflush(stdin);
if(item == 0)
return;
if((*pNode) == NULL)
{ /*循环链表中只有一个结点*/
*pNode = (node*)malloc(sizeof(struct CLinkList));
if(!(*pNode))
exit(0);
(*pNode)->data = item;
(*pNode)->next = *pNode;
}
else
{
/*找到next指向第一个结点的结点*/
for(target = (*pNode); target->next != (*pNode); target = target->next) //这里的target应该是指向地址的地址(二级指针)吧,为啥又和*pNode指针匹配了呢
;
/*生成一个新的结点*/
temp = (node *)malloc(sizeof(struct CLinkList));
if(!temp)
exit(0);
temp->data = item;
temp->next = *pNode;
target->next = temp;
}
}
} (node **pNode) //这是一个元素么
pNode 是一个变量,这个变量里面存储的是一个地址
//这是指针吧
对
for(target = (*pNode); target->next != (*pNode); target = target->next) //这里的target应该是指向地址的地址(二级指针)吧,为啥又和*pNode指针匹配了呢
node *target;
node **pNode
所以 target = (*pNode)
页:
[1]