void insert_end()
{
struct node *nn=(struct node*)malloc(sizeof(struct node));
printf("Enter the data:");
scanf("%d",&nn->info);
nn->next=NULL;
if(first==NULL)
{
first=nn;
first->next=first;
}
else
{
temp=first;
while(temp->next!=first)
temp=temp->next;
temp->next=nn;
nn->next=first;
printf("The address of the first node is %d", first);
printf("The address of the last node is %d", nn->next);
}
}
这是一个循环链表,C 中的插入函数。
我需要证明第一个节点的地址和最后一个节点的链接部分具有相同的值,从而表明它是一个循环链表。
但是我上面的代码给出了随机整数值..!