任何人都可以告诉我 while(thead!= NULL)和 while(thead-> next!= NULL)之间的区别是什么,因为遍历列表当 thead-> next 有效时, thead!= NULL 无效。 根据我的理解,head节点只是一个指向起始节点的指针,而不是起始节点本身 See this if u have doubt。这里只是存储地址。
// thead表示临时头变量以存储地址头指向。
这是插入的代码。
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
struct node
{
int data;
struct node *next;
};
struct node *head;
void insert(int x)
{
struct node *temp=(struct node *)malloc(sizeof(struct node));
temp->data=x;
temp->next=NULL;
if(head==NULL)
{
head=temp;
}
else
{
struct node * thead;
thead=head;
while(thead->next!=NULL)
{
thead=thead->next;
}
thead->next=temp;
}
}
void print()
{
struct node *temp;
temp=head;
while(temp!=NULL)
{
printf("%d",temp->data);
temp=temp->next;
}
}
int main()
{
head=NULL;
int i,n,x;
printf("enter number of nodes");
scanf("%d",&n);
for(i=0;i<n;i++)
{
printf("enter no");
scanf("%d",&x);
insert(x);
}
print();
}
如果我们用thead替换thead - &gt; next!= NULL!= NULL,那么dev c ++就会停止工作。反之,printf会发生遍历...
那么有人可以回答上述两者之间的区别吗?
此外,头节点是第一个包含数据和地址的节点,还是只存储上图中的地址?
此外,如果头节点只是存储地址的指针,那么我们如何才能访问thead-&gt; next?
什么时候是一个结构为NULL的指针?
由于
答案 0 :(得分:1)
现在我已经明白......对于那些仍然被困的人我正在写这个......
当我使用(thead!= NULL)时,thead指针实际上指向列表中的每个元素。当它到达最后一个元素时,它仍然遍历到下一个NULL元素,不像(thead-&gt; next != NULL)停止在链表的最后一个元素。
在打印的情况下,我们需要打印列表中的所有值,因此我们使用while(thead!= NULL),因为我们还需要打印最后一个元素。对于遍历,我们只需要使指针指向最后一个节点,所以我们可以停止它,而不是遍历,直到我们到达NULL指针。
我们无法取消引用NULL,因此出现了错误。
答案 1 :(得分:0)
使用@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.toolbarmenu, menu);
invalidateOptionsMenu();
return true;
}
,代码不需要记住循环后的最后一个节点地址
print()
使用temp=head;
while(temp!=NULL) {
printf("%d",temp->data);
temp=temp->next;
}
// temp == NULL at this point and code does not care what the last node was.
,代码确实需要记住循环后的最后一个节点地址。
insert()
头节点是第一个包含数据和地址的节点,还是只存储上图中的地址?
// First handle special case where the head of the list is NULL
// otherwise ....
while(thead->next!=NULL) {
thead = thead->next;
}
// temp->next == NULL at this point
// Code can use `thead` to access the last node's members.
thead->next = temp;
是一个指针。当struct node *head
时,它指向包含数据和下一个指针的frist节点。
如果头节点只是一个存储地址的指针,那么我们如何才能访问thead-&gt; next?
head != NULL
已使用thead
初始化。通过取消引用head
,代码可以访问该节点的成员,包括thead
。
何时是指向结构的指针NULL?
问题尚不清楚。当.next
的值等于struct
时,指向NULL
的指针为NULL
。这通常是链表代码中的结尾。