记录详情

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:13: error: unknown type name 'Node'
   24 | void Insert(Node* head, int x)
      |             ^~~~
foo.c: In function 'main':
foo.c:48:5: error: unknown type name 'Node'; use 'struct' keyword to refer to the type
   48 |     Node* head = NULL;
      |     ^~~~
      |     struct 
foo.c:52:9: warning: implicit declaration of function 'Insert' [-Wimplicit-function-declaration]
   52 |         Insert(head, k);
      |         ^~~~~~
foo.c:55:12: warning: implicit declaration of function 'Search' [-Wimplicit-function-declaration]
   55 |     int h= Search(head, x);
      |            ^~~~~~
[Hydro](https://hydro.ac)提供评测服务

信息

递交者
类型
递交
题目
A7-4 数组的查找函数
语言
C
递交时间
2023-12-18 21:15:44
评测时间
2023-12-18 21:15:44
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes