自己参照リンクリストを実装するプログラム(C)を書いています。少しコードを書いてコンパイルしましたが、セグメンテーション違反が発生し、理由がわかりません。以下は私のコードです:
#include <stdio.h>
#include <stdlib.h>
#define TRUE 1
#define FALSE 0
struct Node {
int value ;
struct Node *next;
};
void insert(int x, struct Node **pL);
void printList(struct Node *L);
typedef int BOOLEAN;
int main(int argc, char *argv[]) {
int i;
struct Node *L;
for(i = 3 ; i < 20; i+= 2)
insert(i,(&L));
printList(L);
return 0;
}
void insert(int x, struct Node **pL) {
if((*pL) == NULL)
{
(*pL) = malloc(sizeof(struct Node));
(*pL)->value = x;
(*pL)->next = NULL;
} else {
insert(x, &((*pL)->next));
}
}
void printList(struct Node *L) {
printf("%d\n", (L)->value);
if(((L)->next) != NULL) {
printList((L)->next);
}
}