基于面向对象编程,C++实现单链表

链表:在内存空间中是非连续存储

组成:链表是由一个个节点组成的,每个节点都包含两个元素:数据和指针
在这里插入图片描述

节点头文件:

建立一个ListNode.h头文件

#pragma once
class ListNode
{
public:int value;ListNode* next;ListNode(int val);~ListNode();
};

节点源文件:

建立一个ListNode.cpp源文件

#include "ListNode.h"ListNode::ListNode(int val)
{this->value = val;next = nullptr;
}ListNode::~ListNode()
{
}

单链表:由一个个节点组成:

在这里插入图片描述

链表头文件:

建立一个ListNode.h头文件,将需要的API函数写入其中

#pragma once
#include "ListNode.h"
class LinkList
{
public:ListNode* head;ListNode* tail;int length;LinkList();//默认构造~LinkList();//默认析构LinkList(int val);//有参构造void GetLength();//获取长度void PrintList();//打印链表ListNode* get(int index);//获取元素void append(int val);//尾部添加元素void prepend(int val);//头部添加元素void insert(int index, int val);//插入元素ListNode* removeFirst();//移除头部元素ListNode* removeLast();//移除尾部元素ListNode* remove(int index);//移除元素void reverse();//链表翻转bool set(int index, int val);//修改元素int search(int val);//查找元素
};

链表源文件

建立LinkList.cpp源文件,实现具体的API

#include<iostream>
#include "LinkList.h"
using namespace std;LinkList::LinkList()
{
}LinkList::~LinkList()
{
}LinkList::LinkList(int val)
{ListNode* newNode = new ListNode(val);head = newNode;tail = newNode;length = 1;
}void LinkList::GetLength()
{cout << "链表长度为:" << length << endl;
}//打印链表
void LinkList::PrintList()
{ListNode* temp = head;while (temp != nullptr) {cout << temp->value << " ";temp = temp->next;}cout << endl;
}//获取元素
ListNode* LinkList::get(int index)
{if (index < 0 || index >= length) {return nullptr;}ListNode* temp = head;for (int i = 0; i < index; i++) {temp = temp->next;}return temp;
}//尾部增加元素
void LinkList::append(int val)
{ListNode* newNode = new ListNode(val);if (length == 0) {head = newNode;tail = newNode;}else {tail->next = newNode;tail = newNode;}length++;
}//头部增加元素
void LinkList::prepend(int val)
{ListNode* newNode = new ListNode(val);if (length == 0) {head = newNode;tail = newNode;}else {newNode->next = head;head = newNode;}length++;
}//插入元素
void LinkList::insert(int index, int val)
{if (index<0 || index>length) {cout << "error";}else if (index == 0) {prepend(val);}else if (index == length - 1) {append(val);}else {ListNode* pre = head;for (int i = 0; i < index - 1; i++) {pre = pre->next;}ListNode* aft = pre->next;ListNode* newNode = new ListNode(val);newNode->next = aft;pre->next = newNode;length++;}
}//尾部移除元素
ListNode* LinkList::removeLast()
{if (length == 0) {return nullptr;}ListNode* temp = head;ListNode* prev = head;while (temp->next) {prev = temp;temp = temp->next;}tail = prev;tail->next = nullptr;length--;if (length == 0) {//链表只有一个节点,删除后为空head = nullptr;tail = nullptr;}return temp;
}//头部移除元素
ListNode* LinkList::removeFirst()
{if (length == 0) {return nullptr;}ListNode* temp = head;head = head->next;temp->next = nullptr;length--;if (length == 0) {tail = nullptr;}return temp;
}//移除元素
ListNode* LinkList::remove(int index)
{if (index<0 || index>length) {return nullptr;}if (index == 0) {return removeFirst();}if (index == length - 1) {return removeLast();}ListNode* prev = head;for (int i = 0; i < index-1; i++) {prev = prev->next;}ListNode* temp = prev->next;prev->next = temp->next;temp->next = nullptr;length--;return temp;
}//反转
void LinkList::reverse()
{ListNode* temp = head;head = tail;tail = temp;ListNode* after = temp->next;ListNode* before = nullptr;for (int i = 0; i < length; i++) {after = temp->next;temp->next = before;before = temp;temp = after;}
}
//修改元素
bool LinkList::set(int index, int val)
{ListNode* temp = get(index);if (temp) {temp->value = val;return true;}return false;
}//查找元素
int LinkList::search(int val)
{int index = 0;ListNode* temp = head;while (temp->value != val) {index++;temp = temp->next;if (temp == nullptr) {cout << "未找到!" << endl;return -1;}}return index;
}

测试文件:

建一个单链表.cpp文件,用一个例子进行测试

#include<iostream>
#include"LinkList.h"
#include"ListNode.h"
using namespace std;void test() {LinkList* myList1 = new LinkList(1);myList1->append(3);myList1->append(5);myList1->append(7);myList1->append(9);myList1->PrintList();myList1->search(4);
}int main() {test();
}

插入元素:

对于下面的单链表,可以进行头插,尾插,中间任意位置插入
在这里插入图片描述

  1. 头部插入:

由图可以知道,在头部插入时,先将新节点的next指向头结点,然后再将头结点移动到新节点处:

在这里插入图片描述

//头部增加元素
void LinkList::prepend(int val)
{ListNode* newNode = new ListNode(val);//创建新节点if (length == 0) {//如果单链表为空,就将单链表的头结点和尾节点都指向新节点head = newNode;tail = newNode;}else {newNode->next = head;head = newNode;}length++;
}
  1. 尾部插入:

在进行尾插时,先将尾节点的next指向新节点,然后尾节点移动到新节点上

在这里插入图片描述

//尾部增加元素
void LinkList::append(int val)
{ListNode* newNode = new ListNode(val);if (length == 0) {head = newNode;tail = newNode;}else {tail->next = newNode;tail = newNode;}length++;
}
  1. 其他位置插入:

在任意位置插入节点时,有以下几种情况:
1.如果插入的位置不合法要求,返回false
2.如果index=0,头插法
3.如果index=length-1,尾插法
4.其他情况下,
(1)先创建一个临时节点pre令其指向头结点head,
(2)然后移动pre指向index处前的一个节点
(3)在创建一个节点aft指向index
(4)让新节点的next指向aft
(5)让pre节点的next指向新节点

在这里插入图片描述

//插入元素
void LinkList::insert(int index, int val)
{if (index<0 || index>length) {cout << "error";}else if (index == 0) {prepend(val);}else if (index == length - 1) {append(val);}else {ListNode* pre = head;for (int i = 0; i < index - 1; i++) {pre = pre->next;}ListNode* aft = pre->next;ListNode* newNode = new ListNode(val);newNode->next = aft;pre->next = newNode;length++;}
}

删除元素:

同样,删除节点也可以分为头删,尾删,任意位置删除
在这里插入图片描述

  1. 头部节点删除

(1)创建一个新节点指向head
(2)让head向后移一个,即head指向head的next节点
(3)然让temp的next指向head

在这里插入图片描述

2. 尾部节点删除

(1)先创建两个节点:tmp和pre指向head
(2)依次向后移动temp和pre
(3)tail节点指向pre所指的节点
(4)tail的next指向nullptr

在这里插入图片描述

3. 任意位置删除

1.判断index是否合法,不合法返回false
2.如果index=0,则头结点删除法
3.如果index=length-1,则尾节点删除法
4.如果任意位置,则:
(1)创建一个节点prev指向头结点head
(2)移动pre节点至index的前一个节点
(3)创建一个节点temp指向prev的next节点即index指向的节点
(4)让prev的next节点指向temp的next节点
(5)temp的next指向空

在这里插入图片描述

修改元素:

(1)获取该节点
(2)如果该节点不为空,将新值赋给该节点的值

//修改元素
bool LinkList::set(int index, int val)
{ListNode* temp = get(index);if (temp) {temp->value = val;return true;}return false;
}

查找元素:

(1)创建一个临时节点temp,指向头结点head
(2)依次移动temp,并判断temp是否为空
(3)找到节点并返回相应的索引

//查找元素
int LinkList::search(int val)
{int index = 0;ListNode* temp = head;while (temp->value != val) {index++;temp = temp->next;if (temp == nullptr) {cout << "未找到!" << endl;return -1;}}//cout<<index;return index;
}

链表反转:

1.创建一个节点temp,指向头结点head
2.头结点和尾节点互换位置
3.创建两个节点:p1指向空,p2指向temp的下一个节点
4.在整个单链表上进行如下操作:
(1)p2指向temp的下一个节点
(2)然后temp的next指向p1
(3)p1移动至temp
(4)temp移动至p2
在这里插入图片描述

//链表反转
void LinkList::reverse()
{ListNode* temp = head;head = tail;tail = temp;ListNode* after = temp->next;ListNode* before = nullptr;for (int i = 0; i < length; i++) {after = temp->next;temp->next = before;before = temp;temp = after;}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/619865.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

当浏览器输入url的时候会发生什么?

说在前面 当我们在浏览器中输入URL并按下回车时&#xff0c;背后发生了一系列神秘的操作。本文将带您深入了解&#xff0c;从URL解析到页面渲染&#xff0c;揭秘浏览器输入URL的完整流程。 具体步骤 当浏览器输入URL时&#xff0c;一般经过以下细节步骤&#xff1a; 1、引言 …

利用Qt输出XML文件

使用Qt输出xml文件 void PixelConversionLibrary::generateXML() {QFile file("D:/TEST.xml");//创建xml文件if (!file.open(QIODevice::WriteOnly | QIODevice::Text))//以只写方式&#xff0c;文本模式打开文件{qDebug() << "generateXML:Failed to op…

语义分割miou指标计算详解

文章目录 1. 语义分割的评价指标2. 混淆矩阵计算2.1 np.bincount的使用2.2 混淆矩阵计算 3. 语义分割指标计算3.1 IOU计算方式1(推荐)方式2 3.2 Precision 计算3.3 总体的Accuracy计算3.4 Recall 计算3.5 MIOU计算 参考 MIoU全称为Mean Intersection over Union&#xff0c;平均…

Docker五部曲之三:镜像构建

文章目录 前言Docker构建架构构建指令构建上下文本地目录Git存储库压缩文件纯文本文件.dockerignore文件 Dockerfile解析器指令环境变量命令执行格式exec格式shell格式 FROMRUNCMDLABELEXPOSEENVADDCOPYENTRYPOINTVOLUMEUSERWORKDIRARGONBUILDSHELL 多级构建 前言 本文均翻译自…

对快速排序思想的进一步理解,分而治之,欧几里得算法(常用求最大公约数的方法)

自己找到的最优的快排的代码 快速排序 思想 分而治之使用欧几里得算法&#xff08;辗转相除法&#xff09;来求解一个应用题 假设有一块地&#xff0c;现在用这个同样大小的正方形来铺满&#xff0c;求所可用的最大的正方形地砖的面积 这两个方法放在一起是因为这个欧几里得要…

Linux环境之Ubuntu安装Docker流程

今天分享Linux环境之Ubuntu安装docker流程&#xff0c;Docker 是目前非常流行的容器&#xff0c;对其基本掌握很有必要。下面我们通过阿里云镜像的方式安装&#xff1a; 本来今天准备用清华大学镜像安装呢&#xff0c;好像有点问题&#xff0c;于是改成阿里云安装了。清华安装…

抓交通肇事犯(python)

问题描述&#xff1a; 一辆卡车违反交通规则&#xff0c;撞人后逃跑。现场有三人目击该事件&#xff0c;但都没有记住车号&#xff0c;只记下了车号的一些特征。甲说&#xff1a;牌照的前两位数字是相同的&#xff1b;乙说&#xff1a;牌照的后两位数字是相同的&#xff0c;但…

GVM垃圾收集器

Serial收集器&#xff08;新生代&#xff09; Serial&#xff08;串行&#xff09;收集器是最基本、历史最悠久的垃圾收集器&#xff0c;采用“标记-复制”算法负责新生代的垃圾收集。它是Hotspot虚拟机运行在客户端模式下的默认新生代收集器。 它是一个单线程收集器。它会使用…

软件测试学到这个程度,面试轻松拿下20K

很多人认为&#xff0c;软件测试是一个简单的职位&#xff0c;职业生涯走向也不会太好&#xff0c;但是随着时间的推移&#xff0c;软件测试行业的变化&#xff0c;人们开始对软件测试行业的认知有了新的高度&#xff0c;越来越多的人开始关注这个行业&#xff0c;开始重视这个…

v-if控制div内容显示,克隆这个div但是v-if没有效果

问题描述&#xff1a; 我的子页面打印的时候通过isPdf来隐藏“选择参加人员”按钮。 我子页面有个el-dialog&#xff0c;el-dialog里面有个大的div它的id为app-pre-meet-add&#xff0c;在子页面我通过isPdf来显示我想要的内容。现在我在父页面先通过this.$refs.child.control…

分布式缓存

分布式缓存 缓存雪崩 缓存雪崩我们可以简单的理解为&#xff1a;由于原有缓存失效&#xff0c;新缓存未到期间所有原本应该访问缓存的请求都去查询数据库了&#xff0c;而对数据库 CPU 和内存造成巨大压力&#xff0c;严重的会造成数据库宕机。从而形成一系列连锁反应&#xf…

C++与Typescript的区别

目录 一、C类模板和函数模板 1.类模板 2.函数模板 二&#xff0c;Typescript 的泛型声明 1.泛型函数 2.泛型类 为什么C和Typescript语言中主张模板和泛型 一、C类模板和函数模板 在C中&#xff0c;类模板和函数模板允许你为多种数据类型编写通用的代码。这就像每个人都有…

山西电力市场日前价格预测【2024-01-14】

日前价格预测 预测说明&#xff1a; 如上图所示&#xff0c;预测明日&#xff08;2024-01-14&#xff09;山西电力市场全天平均日前电价为415.13元/MWh。其中&#xff0c;最高日前电价为851.84元/MWh&#xff0c;预计出现在18:15。最低日前电价为198.87元/MWh&#xff0c;预计…

使用 C++/WinRT 创作 API

如果 API 位于 Windows 命名空间中 这是你使用 Windows 运行时 API 最常见的情况。 对于元数据中定义的 Windows 命名空间中的每个类型&#xff0c;C/WinRT 都定义了 C 友好等效项&#xff08;称为投影类型 &#xff09;。 投影类型具有与 Windows 类型相同的完全限定名称&…

【LabVIEW FPGA入门】使用CompactRIO进行SPI和I2C通信

NI提供了 SPI and I2C Driver API&#xff1a;下载SPI and I2C Driver API - NI 该API使用FPGA数字I / O线与SPI或I2C设备进行通信。 选择数字硬件时&#xff0c;要考虑三个选项&#xff1a; NI Single-Board RIO硬件可同时使用SPI和I2C驱动程序。NI 9401 C系列模块与SPI驱动程…

大型语言模型,用最少的数学和行话进行解释

本文来自于《Large language models, explained with a minimum of math and jargon》&#xff0c;不嵌入任何笔者的个人理解&#xff0c;只是对原文的总结与记录。 文章作者是Tim Lee和Sean Trott&#xff0c;Tim Lee是一位拥有计算机科学硕士学位的记者&#xff0c;Sean Trot…

【二十】【动态规划】879. 盈利计划、377. 组合总和 Ⅳ、96. 不同的二叉搜索树 ,三道题目深度解析

动态规划 动态规划就像是解决问题的一种策略&#xff0c;它可以帮助我们更高效地找到问题的解决方案。这个策略的核心思想就是将问题分解为一系列的小问题&#xff0c;并将每个小问题的解保存起来。这样&#xff0c;当我们需要解决原始问题的时候&#xff0c;我们就可以直接利…

关于jupyter突然打不开的问题

好久没有用python了&#xff0c;我的电脑环境是安装过anaconda和pycharm&#xff0c;但是有些简单的东西就希望在jupyter中测试一下&#xff0c;但是最近发现jupyter打不开了。 具体是&#xff1a; 在这里打开jupyter是可以的&#xff0c;但是在命令行就不行&#xff0c;表现为…

计算机毕业设计 | SpringBoot+vue的家庭理财 财务管理系统(附源码)

1&#xff0c;绪论 1.1 项目背景 网络的发展已经过去了七十多年&#xff0c;网络技术的发展&#xff0c;将会影响到人类的方方面面&#xff0c;网络的出现让各行各业都得到了极大的发展&#xff0c;为整个社会带来了巨大的生机。 现在许多的产业都与因特网息息相关&#xff…

Python实现华容道问题详解

概要 华容道是一种古老的中国益智游戏&#xff0c;最早出现在中国的《千古文馆》中。这个游戏的目标是将一块特殊的方块从一个方形的棋盘中移出&#xff0c;通过滑动其他的方块来达到这个目标。本文将介绍如何使用Python来实现华容道问题&#xff0c;并提供详细的代码示例。 游…