跪求大神,小甲鱼视频中单链表3中的小疑惑
带你学c带你飞中有一个函数,如下void insertNode(struct Node **head ,int value)
{
struct Node *previous;
struct Node *current;
struct Node *new;
current=*head;
previous = NULL;
while (current!=NULL&¤t->value<value) //这句current->value<value看不懂,current->value是什么鬼东西
{
previous = current;
current=current->next;
}
...
}
问题在//那里
谢谢大佬了
1,提问问题请设置帖子类型为【问题求助】
2,这是基础啊,在讲结构体的时候讲过 qiuyouzhi 发表于 2021-3-22 17:38
1,提问问题请设置帖子类型为【问题求助】
2,这是基础啊,在讲结构体的时候讲过
您是想说访问结构体成员吗,可是它只是定义了一个结构体current,没有定义内容啊(就是没有value),那//那里的current->value哪里来的捏
页:
[1]