C语言版数据与结构中打印单链表的代码
时间: 2024-09-18 14:02:51 浏览: 39
在C语言中,打印单链表通常涉及到两个关键步骤:遍历链表并逐个输出节点的数据。假设我们有一个包含`struct Node`类型的链表,每个节点有`data`和`next`成员:
```c
typedef struct Node {
int data;
struct Node* next; // 指向下一个节点的指针
} Node;
void printLinkedList(Node* head) {
if (head == NULL) { // 链表为空,直接返回
printf("链表为空.\n");
return;
}
Node* current = head; // 初始化当前节点为头节点
while (current != NULL) { // 当前节点不为空就继续遍历
printf("%d ", current->data); // 打印节点数据
current = current->next; // 移动到下一个节点
}
printf("\n"); // 结束遍历后换行
}
```
这个函数接受链表的头节点作为参数,并通过迭代遍历整个链表,直到找到`NULL`为止。
相关问题
C语言版数据与结构中单链表的插入与删除的整个代码
在C语言中,单链表是一种基础的数据结构,包含节点和指针。以下是单链表的简单插入和删除操作的代码示例:
```c
// 定义链表节点结构体
typedef struct Node {
int data; // 节点存储的数据
struct Node* next; // 指向下一个节点的指针
} Node;
// 插入新节点到链表头部
void insertAtBeginning(Node** head, int value) {
Node* newNode = (Node*)malloc(sizeof(Node));
if (newNode == NULL) {
printf("Memory allocation failed.\n");
return;
}
newNode->data = value;
newNode->next = *head;
*head = newNode;
}
// 插入新节点到链表尾部
void insertAtEnd(Node** head, int value) {
Node* newNode = (Node*)malloc(sizeof(Node));
if (newNode == NULL) {
printf("Memory allocation failed.\n");
return;
}
newNode->data = value;
if (*head == NULL) {
*head = newNode;
return;
}
Node* temp = *head;
while (temp->next != NULL) {
temp = temp->next;
}
temp->next = newNode;
}
// 删除给定值的第一个匹配项
void deleteNodeWithValue(Node** head, int value) {
if (*head == NULL) {
printf("List is empty.\n");
return;
}
if ((*head)->data == value) {
Node* temp = *head;
*head = (*head)->next;
free(temp);
return;
}
Node* current = *head;
while (current->next != NULL && current->next->data != value) {
current = current->next;
}
if (current->next != NULL) {
Node* temp = current->next;
current->next = temp->next;
free(temp);
} else {
printf("Value not found in the list.\n");
}
}
// 示例链表遍历打印
void printList(Node* head) {
Node* temp = head;
while (temp != NULL) {
printf("%d -> ", temp->data);
temp = temp->next;
}
printf("NULL\n");
}
```
c语言数据结构单链表代码实现
在C语言中,单链表是一种基础的数据结构,它由一系列节点组成,每个节点包含两个部分:数据域和指针域。下面是简单的单向链表的创建、插入、删除和遍历的代码实现:
```c
#include <stdio.h>
#include <stdlib.h>
// 定义链表节点结构体
typedef struct Node {
int data; // 数据域
struct Node* next; // 指针域,指向下一个节点
} Node;
// 创建新节点并初始化
Node* createNode(int value) {
Node* newNode = (Node*)malloc(sizeof(Node));
if (newNode != NULL) {
newNode->data = value;
newNode->next = NULL;
}
return newNode;
}
// 在链表末尾插入节点
void insertNode(Node** head, int value) {
Node* newNode = createNode(value);
if (*head == NULL) {
*head = newNode;
} else {
Node* temp = *head;
while (temp->next != NULL) {
temp = temp->next;
}
temp->next = newNode;
}
}
// 删除指定值的节点
void deleteNode(Node** head, int value) {
if (*head == NULL) {
return;
}
if ((*head)->data == value) {
Node* temp = *head;
*head = (*head)->next;
free(temp);
return;
}
Node* prev = *head;
Node* curr = (*head)->next;
while (curr != NULL && curr->data != value) {
prev = curr;
curr = curr->next;
}
if (curr != NULL) {
prev->next = curr->next;
free(curr);
}
}
// 遍历链表并打印元素
void printList(Node* head) {
Node* temp = head;
while (temp != NULL) {
printf("%d -> ", temp->data);
temp = temp->next;
}
printf("NULL\n");
}
int main() {
Node* head = NULL;
// 插入一些节点
insertNode(&head, 1);
insertNode(&head, 2);
insertNode(&head, 3);
// 打印链表
printList(head);
// 删除节点
deleteNode(&head, 2);
// 再次打印链表
printList(head);
return 0;
}
```
阅读全文