我这里的想问的是,形参表头到底是用struct note *head
还是用struct note **head
我看大部分的书和网上页码上都用的是struct note *head
我用*head尝试写过程序,验证表头地址失败
改用**head能力有限,
麻烦高手指点..........
希望哪位高手写一个能执行的程序
要有主程序int main(void)
{
}
最好两种都写下,能输出结果的,就是输入数据,能输出结果的
还有就是
还有就是插入和删除结点的时候是不是必须要用二级指针?(对表头有可能修改)
在这里希望能给我写出一个新建链表的程序(两个吧,形参一级和二级)
新建一个链表
非常的感谢,有分加
Cç¨åºç¤ºä¾ï¼
#include "stdio.h"
struct node
{
int data;
struct node *next;
};
/* æé é¾è¡¨ï¼è¿å头ç»ç¹æé */
struct node *CreateLinkList()
{
struct node *head, *p, *q;
int value;
head = (struct node*)malloc(sizeof(struct node));
head->next = NULL;
q = head;
while(1)
{
printf("value (end by -1) : ");
scanf("%d", &value);
if(value == -1)
break;
p = (struct node*)malloc(sizeof(struct node));
p->data = value;
p->next = NULL;
q->next = p;
q = p;
}
return head;
}
/* éåé¾è¡¨ */
void ListAllNodes(struct node *head)
{
struct node *p;
for(p=head->next; p!=NULL; p=p->next)
printf("%d\n", p->data);
}
void main()
{
struct node *head;
head = CreateLinkList();
ListAllNodes(head);
}
è¿è¡æµè¯ï¼