问题描述:单链表实现-链表删除;即实现DeleteLinklist(h, i)。
算法思路:
一 先调用函数GetLinklist(h, i-1),找到结点ai的前驱。
二 然后将结点ai删除之。(此步分为三个小步骤:1 赋值 2 改指针 3删除)
三 最后记得释放结点的内存空间。
代码实现:
实现一个功能函数需要三个文件(三个文件在同一目录)。
linklist.h(定义顺序表)
linklist.c(实现接口函数)
test.c(主函数实现)
linklist.h
主要添加定义链表删除函数int list_delete(linklist H, int pos);和结点内存释放函数linklist list_free(linklist H);
typedef int data_t;
//节点定义
typedef struct node{
data_t data;
struct node * next;
}listnode, *linklist;
//创建链表
linklist list_create();
linklist list_get(linklist H, int pos);
int list_tail_insert(linklist H, data_t value);//head
int list_show(linklist H);
int list_insert(linklist H, data_t value, int pos);
int list_delete(linklist H, int pos);
linklist list_free(linklist H);
linklist.c
主要实现链表删除函数int list_delete(linklist H, int pos);和结点内存释放函数linklist list_free(linklist H);
#include <stdio.h>
#include "linklist.h"
#include <stdlib.h>
linklist list_create(){
linklist H;
H = (linklist)malloc(sizeof(listnode));
if (H == NULL){
printf("malloc failed\n");
return H;
}
H->data = 0;
H->next = NULL;
return H;
}
int list_tail_insert(linklist H, data_t value){
//判断链表是否创建成功
if (H == NULL){
printf("H is NULL\n");
return -1;
}
//1 new node p
linklist p;
linklist q;
if ((p = (linklist)malloc(sizeof(listnode))) == NULL){
printf("malloc failed\n");
return -1;
}
p->data = value;
p->next = NULL;
//2 locate tail node
q = H;
while (q->next != NULL){
q = q->next;
}
//3 insert
q->next = p;
return 0;
}
int list_show(linklist H){
linklist p;
if (H == NULL){
printf("H is NULL\n");
return -1;
}
p = H;
while(p->next != NULL){
printf("%d ", p->next->data);
p = p->next;
}
puts("");
return 0;
}
linklist list_get(linklist H, int pos){
linklist p;
int i;
if (H == NULL){
printf("H is NULL\n");
return NULL;
}
if (pos == -1){
return H;
}
if (pos < -1) {
printf("pos is invalid\n");
return NULL;
}
p = H;;
i = -1;
while(i < pos){
p = p->next;
if (p == NULL){
printf("pos is invalid\n");
return NULL;
}
i++;
}
return p;
}
int list_insert(linklist H, data_t value, int pos){
linklist p;
linklist q;
if (H == NULL){
printf("H is NULL\n");
return -1;
}
//1 locate node p(pos-1)
p = list_get(H, pos-1);
if (p == NULL){
return -1;
}
//2 new node q
if ((q = (linklist)malloc(sizeof(listnode))) == NULL) {
printf("malloc failed\n");
return -1;
}
q->data = value;
q->next = NULL;
//3 insert
q->next = p->next;
p->next = q;
return 0;
}
int list_delete(linklist H, int pos){
linklist p;
linklist q;
//1 检查入口参数
if (H == NULL) {
printf("H is NULL\n");
return -1;
}
//2 locate prior
p = list_get(H, pos-1);
if (p == NULL)
return -1;
if (p->next == NULL){
printf("delete pos is invalid\n");
return -1;
}
//3 update list
q = p->next;
p->next = q->next;
//4 free
printf("free:%d\n", q->data);//p->next = p->next->next;
free(q);
q = NULL;
return 0;
}
linklist list_free(linklist H) {
linklist p;
if (H == NULL)
return NULL;
p = H;
printf("free:");
while (H != NULL) {
p = H;
printf("%d ", p->data);
free(p);
H = H->next;
}
puts("");
return NULL;
}
test.c
主函数程序:首先创建链表函数list_create(),将用户输入得元素,通过尾部插入得方式插入链表list_tail_insert,然后通过链表删除函数list_delete(H, 0);实现第0位置删除的效果。最后通过结点内存释放函数 list_free(H);释放结点内存
#include <stdio.h>
#include "linklist.h"
void test_get();
void test_insert();
int main(int argc, const char *argv[])
{
linklist H;
int value;
H = list_create();
if (H == NULL)
return -1;
printf("input:");
while (1){
scanf("%d", &value);
if (value == -1){
break;
}
list_tail_insert(H, value);
printf("input:");
}
list_show(H);
list_delete(H, 0);
list_show(H);
list_free(H);
return 0;
}
void test_get(){
linklist H;
int value;
linklist p;
H = list_create();
if (H == NULL)
return ;
printf("input:");
while (1){
scanf("%d", &value);
if (value == -1){
break;
}
list_tail_insert(H, value);
printf("input:");
}
list_show(H);
p = list_get(H, 4);
if (p !=NULL)
printf("value=%d\n", p->data);
}
void test_insert(){
linklist H;
int value;
H = list_create();
if (H == NULL)
return;
printf("input:");
while (1){
scanf("%d", &value);
if (value == -1){
break;
}
list_tail_insert(H, value);
printf("input:");
}
list_show(H);
list_insert(H, 100, 0);
list_show(H);
}
Clion编译运行
想要用Clion编译运行上述三个文件,需要创建一个CMakeLists.txt文件,文件内容如下:
这样就可以正常运行了
运行结果:
由结果可知:输入了12345元素,第0位置上的1被删除了,显示结点内存也由list_free()函数释放了。