逐个输出单链表中的数据元素
逐个输出单链表中的数据元素,,不知为何不能得到想要的,求帮助!!!!!!#include "stdafx.h"
#include<stdio.h>
#include<stdlib.h>
typedef struct Node
{
int data;
struct Node *next;
} SLNode;
void ListInitiate(SLNode *head)
{
head = (SLNode *)malloc(sizeof(SLNode));
head->next = NULL;
};
int ListInsert(SLNode *head,int i,int x)
{
SLNode *p, *q;
int j;
p =head;
j =-1;
while(p->next != NULL && j<i-1)
{
p = p->next;
j++;
}
if(j != i-1)
{
printf("插入的位置参数有错\n");
return 0;
}
q = (SLNode *)malloc(sizeof(SLNode));
q->data =x;
q->next = p->next;
p->next =q;
return 1;
};
int ListGet(SLNode *head,int i,int *x)
{
SLNode *p;
int j;
p =head;
j = -1;
while(p->next != NULL && j<i-1)
{
p = p->next;
j++;
}
if(j != i)
{
printf("取元素的位置参数有错\n");
return 0;
}
*x = p->data;
return 1;
};
int main(int argc, char* argv[])
{
SLNode *head;
int x,i;
ListInitiate(head);
for(i=0;i<10;i++)
ListInsert(head,i,i+1);
for(i=0;i<10;i++)
{
ListGet(head,i,&x);
printf("%d ",x);
}
printf("Hello World!\n");
return 0;
}
编译通过,但是想不明白为什么得不到正确的结果,,,实验目的是为了逐个输出单链表中所有的数据元素