【C++】list 与 string 基础与实现字符串操作

news/2024/11/17 18:33:18/

【C++】使用 liststring 实现基础字符串操作

文章目录

    • 一、字符串的基础操作
      • 1.1 - startsWith
      • 1.2 - endsWith
      • 1.3 - trim
      • 1.4 - indexOf
      • 1.5 - replaceAll
    • 二、list 基础操作
      • 2.1 - 遍历
        • 2.1.1 - 使用迭代器访问
        • 2.1.2 - 使用基于范围的 for 循环遍历
        • 2.1.3 - 使用标准算法库遍历
      • 2.2 - 访问元素
      • 2.3 - 删除元素
    • 三、list\<string\>
      • 3.1 - 移除所有空字符串元素
      • 3.2 - 遍历字符串并应用 trim
      • 3.3 - 移除连续的空白行

一、字符串的基础操作

1.1 - startsWith

bool startsWith(const std::string& fullString, const std::string& starting)
{if (fullString.length() >= starting.length()) {return (0 == fullString.compare(0, starting.length(), starting));} else {return false;}
}

1.2 - endsWith

bool endsWith(const std::string& fullString, const std::string& ending) {if (fullString.length() >= ending.length()){return (0 == fullString.compare(fullString.length() - ending.length(), ending.length(), ending));}else{return false;}
}

1.3 - trim

用于移除字符串前后两端的空白符

// Function to trim whitespace from the beginning and end of a string
std::string trim(const std::string& str) {size_t first = str.find_first_not_of(string">" \t\n\r\f\v");// No non-whitespace charactersif (first == std::string::npos){    // 如果从头开始非空白符找不到,说明所有的字符都是空白符,因此全部去掉return string">"";  }size_t last = str.find_last_not_of(string">" \t\n\r\f\v");// 即便 last 为 string::npos substr 也会做处理。return str.substr(first, (last - first + 1));
}

或者

#include string"><algorithm>
#include string"><cctype>// 去除字符串左侧空白
static inline void ltrim(std::string &s) {s.erase(s.begin(), std::find_if(s.begin(), s.end(), [](unsigned char ch) {return !std::isspace(ch);}));
}// 去除字符串右侧空白
static inline void rtrim(std::string &s) {s.erase(std::find_if(s.rbegin(), s.rend(), [](unsigned char ch) {return !std::isspace(ch);}).base(), s.end());
}// 去除字符串两侧空白
static inline void trim(std::string &s) {ltrim(s);rtrim(s);
}

1.4 - indexOf

用于获取第一个子串的位置索引,如果找不到则返回 -1。

// Function to find the index of the first occurrence of a substring
int indexOf(const std::string& str, const std::string& substr)
{size_t pos = str.find(substr);return (pos != std::string::npos) ? static_cast<int>(pos) : -1;
}

1.5 - replaceAll

// 替换字符串中所有匹配的子字符串
void replaceAll(std::string& source, const std::string& from, const std::string& to)
{// 如果字符串为空则返回。if (from.empty()) { return; }size_t startPos = 0;while ((startPos = source.find(from, startPos)) != std::string::npos) {source.replace(startPos, from.length(), to);startPos += to.length(); // 在替换后移动过去新增的部分}
}

list__105">二、list 基础操作

2.1 - 遍历

2.1.1 - 使用迭代器访问
#include string"><iostream>
#include string"><list>
std::list<int> myList = {1, 2, 3, 4, 5};// 使用迭代器遍历 std::list
for (auto it = myList.begin(); it != myList.end(); ++it)
{std::cout << *it << string">" ";
}
std::cout << std::endl;
2.1.2 - 使用基于范围的 for 循环遍历
#include string"><iostream>
#include string"><list>
// 使用范围基 for 循环遍历 std::list
for (int elem : myList) 
{std::cout << elem << string">" ";
}
std::cout << std::endl;
2.1.3 - 使用标准算法库遍历
#include string"><iostream>
#include string"><list>
#include string"><algorithm> // for std::for_each
std::list<int> myList = {1, 2, 3, 4, 5};// 使用 std::for_each 遍历 std::list
std::for_each(myList.begin(), myList.end(), [](int elem) {std::cout << elem << string">" ";
});
std::cout << std::endl;

2.2 - 访问元素

访问第 N 个元素

#include string"><iostream>
#include string"><list>std::list<int> myList = {10, 20, 30, 40, 50};
int N = 3;  // 以 0 为起始索引,访问第 4 个元素
auto it = myList.begin();
std::advance(it, N);  // 使用 std::advance 前进到第 N 个元素if (it != myList.end()) {std::cout << string">"The element at index " << N << string">" is " << *it << std::endl;
} else {std::cout << string">"Index out of range." << std::endl;
}

2.3 - 删除元素

删除前 N 个元素

std::list<int> myList = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};int N = 3;  // 指定要删除的元素数量
if (N <= myList.size()) {// 获取开始到第 N 个元素的迭代器auto it = myList.begin();std::advance(it, N);  // 移动迭代器到第 N 个位置// 从开始到第 N 个元素进行删除myList.erase(myList.begin(), it);
}// 打印剩余的元素
for (int elem : myList) {std::cout << elem << string">" ";
}
std::cout << std::endl;

liststring_185">三、list<string>

3.1 - 移除所有空字符串元素

#include string"><iostream>
#include string"><list>
#include string"><string>// 创建并初始化一个 std::list<std::string>
std::list<std::string> strings = {string">"Hello", string">"", string">"World", string">"", string">"C++17", string">""};
// 输出原始列表
std::cout << string">"Original list:" << std::endl;
for (const auto& str : strings)
{std::cout << string">"'" << str << string">"'" << std::endl;
}
// 移除所有空字符串
strings.remove_if([](const std::string& s) { return s.empty(); });
// 输出修改后的列表
std::cout << string">"\nList after removing empty strings:" << std::endl;
for (const auto& str : strings) {std::cout << string">"'" << str << string">"'" << std::endl;
}

3.2 - 遍历字符串并应用 trim

std::list<std::string> myStrings = {string">"  hello  ", string">"  world!  ", string">"  example  "};// 遍历列表并应用 trim 函数
for (std::string& str : myStrings) {trim(str);
}
// 打印修剪后的字符串列表
for (const auto& str : myStrings) {std::cout << string">'"' << str << string">'"' << std::endl;
}

3.3 - 移除连续的空白行

将多个连续的空白行替换为一个空白行

#include string"><iostream>
#include string"><list>
#include string"><string>
#include string"><iterator>void compressEmptyLines(std::list<std::string>& lines) {bool lastWasEmpty = false;for (auto it = lines.begin(); it != lines.end(); ) {// 检查当前行是否为空白(或只包含空格)bool isEmpty = it->find_first_not_of(string">" \t\n\v\f\r") == std::string::npos;if (isEmpty) {if (lastWasEmpty) {// 如果当前行是空的,并且上一行也是空的,删除当前行it = lines.erase(it);} else {// 如果当前行是空的,但上一行不是,保留这行并标记lastWasEmpty = true;++it;}} else {// 如果当前行不是空的,继续前进lastWasEmpty = false;++it;}}
}int main() {std::list<std::string> lines = {string">"Hello",string">" ",string">" ",string">"World",string">"",string">"",string">"!",string">" ",string">"End"};compressEmptyLines(lines);// 输出处理后的列表for (const auto& line : lines) {std::cout << string">'"' << line << string">'"' << std::endl;}return 0;
}

http://www.ppmy.cn/news/1547778.html

相关文章

STM32G4的数模转换器(DAC)功能介绍

目录 概述 1 DAC介绍 1.1 功能 1.2 主要特征 1.3 DAC特性总结 ​2 DAC模块框架结构 3 DAC数据格式 3.1 单DAC通道 3.2 双通道数据格式 3.3 有符号、无符号数据 4 DAC数据转换 ​5 DAC输出电压 概述 本文主要介绍STM32G4的数模转换器&#xff08;DAC&#xff09;功能&a…

AI在电商平台中的创新应用:提升销售效率与用户体验的数字化转型

1. 引言 AI技术在电商平台的应用已不仅仅停留在基础的数据分析和自动化推荐上。随着人工智能的迅速发展&#xff0c;越来越多的电商平台开始将AI技术深度融合到用户体验、定价策略、供应链优化、客户服务等核心业务中&#xff0c;从而显著提升运营效率和用户满意度。在这篇文章…

vue3中使用 HTML5 Canvas 做一个案例总结笔记

这篇文章记录了在vue3中如何使用HTML5 Canvas做一个时钟的案例, 当然主要是HTML5 Canvas, 如何需要了解更多关于vue的知识前面也已经写过好几篇了,辛苦翻一下的... 开始写代码之前我们先来了解一下关于HTML5 Canvas 的基础知识 目录 一 .基础知识 1.了解canvas 1.1 基本用法…

Linux下useradd 和 adduser的区别

useradd 和 adduser 是在类 Unix 系统中用于添加新用户的命令&#xff0c;但它们之间存在一些差异&#xff0c;主要体现在不同的系统环境和命令的具体实现上。 useradd useradd 命令通常用于基于 sysvinit 的系统&#xff0c;如早期的 Linux 发行版&#xff08;比如 CentOS 6…

Jmeter中的监听器(四)

13--用表格查看结果 功能特点 响应时间&#xff1a;显示每个请求的响应时间。响应码&#xff1a;显示每个请求的HTTP响应码。请求数据&#xff1a;显示发送的请求数据。响应数据&#xff1a;显示接收到的响应数据。错误信息&#xff1a;显示请求失败时的错误信息。详细信息&a…

【手撕 Spring】 -- 实现含构造函数的类实例化

&#x1f308;手写简化版 Spring 框架&#xff1a;通过构建一个精简版的 Spring 框架&#xff0c;深入理解 Spring 的核心机制&#xff0c;掌握其设计思想&#xff0c;进一步提升编程能力 &#x1f308;项目代码地址&#xff1a;https://github.com/YYYUUU42/mini-Spring 如果该…

计算机网络 (5)数据通信的基础知识

前言 数据通信是一种以信息处理技术和计算机技术为基础的通信方式&#xff0c;它通过数据通信系统将数据以某种信号方式从一处传送到另一处&#xff0c;为计算机网络的应用和发展提供了技术支持和可靠的通信环境&#xff0c;是现代通信技术的关键部分。 一、数据通信的基本概念…

C# DataTable使用Linq查询详解

前奏- C# 对DataTable进行查询 C# 可以对 DataTable 进行查询。在 .NET 框架中&#xff0c;DataTable 类提供了几种方法来查询数据&#xff0c;包括 Select 方法和 AsEnumerable 扩展方法&#xff08;在 System.Data.DataSetExtensions 命名空间中&#xff09;。 使用 Select…