请你用C语言写一段单链表的显示输出列表函数
时间: 2024-04-30 21:24:18 浏览: 94
使用c语言实现单链表
4星 · 用户满意度95%
好的,以下是用C语言写的单链表的显示输出列表函数:
```
void displayList(struct node *head) {
struct node *current = head;
while (current != NULL) {
printf("%d ", current->data);
current = current->next;
}
printf("\n");
}
```
其中,`struct node`表示单链表节点的结构体,包括`int data`表示节点存储的数据,`struct node *next`表示指向下一个节点的指针。`head`表示单链表的头节点,即第一个节点。函数中使用`current`指针遍历单链表,输出每个节点的数据,直到遍历到链表尾部为止。
阅读全文