记录详情

Compile Error

foo.c:6:5: error: unknown type name 'Node'
    6 |     Node* next;
      |     ^~~~
foo.c:9:12: error: unknown type name 'Node'
    9 | int Search(Node* head, int x)
      |            ^~~~
foo.c:24:1: error: unknown type name 'Node'; use 'struct' keyword to refer to the type
   24 | Node* Insert(Node* head, int x)
      | ^~~~
      | struct 
foo.c:24:14: error: unknown type name 'Node'
   24 | Node* Insert(Node* head, int x)
      |              ^~~~
foo.c: In function 'main':
foo.c:49:5: error: unknown type name 'Node'; use 'struct' keyword to refer to the type
   49 |     Node* head = NULL;
      |     ^~~~
      |     struct 
foo.c:53:14: warning: implicit declaration of function 'Insert' [-Wimplicit-function-declaration]
   53 |         head=Insert(head, k);
      |              ^~~~~~
foo.c:53:13: warning: assignment to 'int *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
   53 |         head=Insert(head, k);
      |             ^
foo.c:57:12: warning: implicit declaration of function 'Search' [-Wimplicit-function-declaration]
   57 |     int m= Search(head, x);
      |            ^~~~~~
[Hydro](https://hydro.ac)提供评测服务

信息

递交者
类型
递交
题目
A7-4 数组的查找函数
比赛
2023 程序设计与竞赛(作业8:链表的世界)
语言
C
递交时间
2023-11-25 10:29:03
评测时间
2023-11-25 10:29:03
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes