c语言对单链表的增删改基本操作
c语言实现链表的初始化、插入、删除、修改本程序许多地方没有进行指针范围的判定,只是最基本的功能实现。#include <stdio.h>#include <stdlib.h>//首先建立目标结构体,根据实际情况修改typedef struct node{ int data; struct node* next; }LNODE,*LinkList; //初始化链表,建立头结点便于使用 LinkList creat();//头插法 void initial(Lin
原创
2021-09-25 15:39:52 ·
348 阅读 ·
0 评论