前提・実現したいこと
C言語で,リスト構造を作成しています.
その中で,任意の要素を先頭に0が入力されるまで繰り返し挿入する仕様を作りたく,先頭に要素を挿入する関数を作りました.
emacsだと問題なく出力できるのですが,VScodeでコンパイラするとエラーが出てしまいます.何故でしょうか.
発生している問題・エラーメッセージ
エラーメッセージ error: assigning to 'struct element *' from incompatible type 'element_type' (aka 'struct element'); remove * pNew->next = *pp; error: assigning to 'element_type' (aka 'struct element') from incompatible type 'element_type *' (aka 'struct element *'); dereference with * *pp = pNew;
該当のソースコード
c言語 ソースコード #include <stdio.h> #include <stdlib.h> #include <ctype.h> #define FIRST 0 #define BUFSIZE 100 #define WORDSIZE 31 int buf[BUFSIZE]; int bufp = 0; typedef struct element { int value; struct element *next; } element_type; void putlist(element_type *q); void getlist(element_type **pp); int getword(char *word, int lim); int getch(void); void ungetch(int c); void eraselist(element_type **pp); void insert_top(element_type **pp, int val); int main(void) { element_type *root; char word[WORDSIZE]; int num; printf("リストに入れる正整数を入力して下さい。\n"); printf("入力は 0 以下の整数を入力したときに終わります\n"); getlist(&root); printf("できあがったリストを出力します。\n"); putlist(root); putchar('\n'); printf("これから整数を入力し、リストの先頭に挿入します。\n"); printf("挿入は繰り返し行います。\n"); printf("0以下の値を入力すると終了します。\n"); printf("要素値を入力> "); getword(word, BUFSIZE); num = atoi(word); while (num > 0) { insert_top(&root, num); putlist(root); putchar('\n'); printf("要素値を入力> "); getword(word, BUFSIZE); num = atoi(word); } printf("リストを消去します。\n"); eraselist(&root); return 0; } /* ここに関数 insert_top を記述します。 */ void intsert_top(element_type *pp, int val) { element_type *pNew; pNew = NULL; pNew = (element_type*)malloc(sizeof(element_type)); pNew->value = val; pNew->next = *pp; *pp = pNew; } void getlist(element_type **pp) { element_type *cur_p, *pre_p; int num, count, kind; char word[WORDSIZE]; *pp = NULL; count = FIRST; printf("要素値を入力> "); getword(word, BUFSIZE); num = atoi(word); while (num > 0) { cur_p = (element_type *)malloc(sizeof(element_type)); if (count == FIRST) { *pp = cur_p; } else { pre_p->next = cur_p; } cur_p->value = num; cur_p->next = NULL; pre_p = cur_p; count++; printf("要素値を入力> "); getword(word, BUFSIZE); num = atoi(word); } } void putlist(element_type *q) { while (q != NULL) { printf("%2d ", q->value); q = q->next; } } int getword(char *word, int lim) { int c; char *w = word; while (isspace(c = getch())) ; if (c != EOF) { *w++ = c; } if (!isalnum(c) && c != '+' && c != '-') { *w = '\0'; return c; } else if (isalpha(c)) { for (; --lim > 0; w++) { if (!isalnum(*w = getch())) { ungetch(*w); break; } } *w = '\0'; return word[0]; } else { for (; --lim > 0; w++) { if (!isdigit(*w = getch())) { ungetch(*w); break; } } *w = '\0'; return word[0]; } } int getch(void) { if (bufp > 0) { return buf[--bufp]; } else { return getchar(); } } void ungetch(int c) { if (bufp >= BUFSIZE) { printf("ungetch : 押し戻す文字が多すぎます\n"); } else { buf[bufp++] = c; } } void eraselist(element_type **pp) { element_type *q; while (*pp != NULL) { q = *pp; *pp = (*pp)->next; free(q); } }
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。