创建一个单链表的方法可以有多种实现方式,以下是其中的一种常见方法:
struct Node {
int data;
struct Node* next;
};
struct Node* head = NULL;
struct Node* newNode = (struct Node*)malloc(sizeof(struct Node)); // 创建新节点
newNode->data = value; // 设置节点的数据域
newNode->next = head; // 将新节点的指针域指向当前头节点
head = newNode; // 更新头节点为新节点
struct Node* newNode = (struct Node*)malloc(sizeof(struct Node)); // 创建新节点
newNode->data = value; // 设置节点的数据域
newNode->next = NULL; // 将新节点的指针域置为NULL
if (head == NULL) { // 如果链表为空,则将新节点设为头节点
head = newNode;
} else {
struct Node* temp = head;
while (temp->next != NULL) { // 找到最后一个节点
temp = temp->next;
}
temp->next = newNode; // 将新节点连接到最后一个节点
}
注意:在使用完链表后,应该记得释放内存,避免内存泄漏。
struct Node* temp = head;
while (head != NULL) {
temp = head;
head = head->next;
free(temp);
}