#include <stdio.h>
#include <stdlib.h>
typedef struct node
{
int num;
char sex;
struct node* next;
}Node;
Node* init_list(int);
int main(int argc, char const *argv[])
{
Node* head;
head = init_list(10);
head = head->next;
//遍历节点
while(head->next != NULL)
{
printf("%d %c\n",
c语言创建单链表
最新推荐文章于 2024-10-06 22:18:14 发布
本文详细介绍了如何使用C语言创建和操作单链表,包括节点定义、插入、删除等基本操作,是C语言初学者理解链表数据结构的好资料。
摘要由CSDN通过智能技术生成