IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> C语言链表 -> 正文阅读

[数据结构与算法]C语言链表

链表

链表定义

链表是一种常用的数据结构,链表类似于数组可以连续存储数据,但链表在物理地址上不是连续的,它是通过链表的指针域来存储不同节点的地址,将数据存储在数据域中(头节点是没有数据域的),而链表的最后一个节点的的指针域存放的指针存放的是NULL空地址。通链表可以方便的对我们的数据进行查找,遍历,删除,修改等等操作。

为什么要使用链表

为什么要使用链表?前面说了链表是类似与数组这种结构类型。链表解决了数组存在的许多问题,例如:数组的长度无法改变,数组元素替换删除复杂,无法存储多种类型的元素。

创建链表

使用头插法动态创建链表

#include <stdio.h>
#include <stdlib.h>

struct Student
{
   int data;//数据域
   struct Student *next;//指针用来访问下一个节点
};


struct Student *create(struct Student *head,int n){
	int i = 0;
	struct Student *p;//定义头节点,普通节点,尾部节点;

	for(i = 0;i < n;i++)
		{
		p = (struct Student *)malloc(sizeof(struct Student));
		scanf("%d", &(p->data));
		if(head == NULL)//判断是否为空
		   {
           head = p;
           }
        else
           {
           p->next = head;
           head = p;
           }
	    }
	    return head;
}
int main()
{
   struct Student *head;
   printf("please input the number of nodes\n");
   int n;
   scanf("%d",&n);
   head = create(head,n);
   return 0;
}

遍历链表


void printLink(struct Student *head)
{
   struct Student *point;//设置一个有效节点
   point = head;
   while(point != NULL)
   	{
   	   printf("%d ",point->data);
	   point = point->next;
   	}
   putchar('\n');

}

int main()
{
   struct Student *head = NULL;
   printf("please input the number of nodes\n");
   int n;
   scanf("%d",&n);
   head = create(head,n);
   printLink(head);
   return 0;
}

在指定元素后插入节点

struct Student *insert(struct Student *head,int data,struct Student *new)
{
   struct Student *p = head;

   while(p != NULL)
   	{
   	   if(p->data == data)
   	   	{
   	   	   new->next = p->next;//在元素后面插入元素
		   p->next = new;
		   return head;
   	   	}
	   p = p->next;
   	}
   return head;
}
int main()
{
   struct Student *head = NULL;
   printf("please input the number of nodes\n");
   int n;
   scanf("%d",&n);
   head = create(head,n);

   struct Student new = {100,NULL};
   head = insert(head,1,&new);//在元素‘1’的后面插入新元素	
   printLink(head);
   return 0;
}

删除指定节点

struct Student *deleteLink(struct Student *head,int data)
{
   struct Student *p = head;
   if(p->data == data)//删除第一个节点
   	{
   	   head = head->next;
   	}
   while(p->next != NULL)
   	{
   	   if(p->next->data == data)
   	   	{
   	   	   p->next =p->next->next;//使节点指向被删除的节点的下一个
		   return head;
   	   	}
	   p = p->next;
   	}
   return head;
}

int main()
{
   struct Student *head = NULL;
   printf("please input the number of nodes\n");
   int n;
   scanf("%d",&n);
   head = create(head,n);
   head = deleteLink(head,2);
   printLink(head);
   return 0;
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2021-08-06 10:05:03  更:2021-08-06 10:05:38 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 19:29:59-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码