使用C语言写一个链表的查找的代码
时间: 2023-05-17 13:04:31 浏览: 109
C语言链表实现字符串输入、查找、删除等
可以使用以下代码来实现查找链表中的元素: struct node{
int data;
struct node *next;
}; struct node *findNode(struct node *head, int x){
struct node *current = head;
while (current != NULL) {
if (current->data == x)
return current;
current = current->next;
}
return NULL;
}
阅读全文