c# 容器笔记

c#与c++的相似容器

c#中和std::set 的用法相似的容器

在 C# 中,和 C++ 中的 std::set 用法相似的容器是 HashSet<T>SortedSet<T>。这两者都实现了集合的功能,但有一些不同的特点。

HashSet<T>

  • 无序集合:不保证元素的顺序。
  • 快速查找:基于哈希表,查找、添加和删除操作的平均时间复杂度为 O(1)。
  • 唯一性:不允许重复元素。
用法示例:
using System;
using System.Collections.Generic;class Program
{static void Main(){HashSet<int> hashSet = new HashSet<int>();// 添加元素hashSet.Add(1);hashSet.Add(2);hashSet.Add(3);// 尝试添加重复元素bool added = hashSet.Add(3); // added will be false because 3 is already in the set// 检查元素是否存在bool contains = hashSet.Contains(2); // contains will be true// 删除元素hashSet.Remove(2);// 遍历元素foreach (int item in hashSet){Console.WriteLine(item);}}
}

SortedSet<T>

  • 有序集合:元素按排序顺序存储(默认按升序排列)。
  • 较慢查找:基于红黑树,查找、添加和删除操作的平均时间复杂度为 O(log n)。
  • 唯一性:不允许重复元素。
用法示例:
using System;
using System.Collections.Generic;class Program
{static void Main(){SortedSet<int> sortedSet = new SortedSet<int>();// 添加元素sortedSet.Add(3);sortedSet.Add(1);sortedSet.Add(2);// 尝试添加重复元素bool added = sortedSet.Add(2); // added will be false because 2 is already in the set// 检查元素是否存在bool contains = sortedSet.Contains(1); // contains will be true// 删除元素sortedSet.Remove(1);// 遍历元素foreach (int item in sortedSet){Console.WriteLine(item); // 输出为 2, 3 因为集合是有序的}}
}

选择 HashSet<T> 还是 SortedSet<T>

  • 如果需要快速查找和不关心元素的顺序,选择 HashSet<T>
  • 如果需要元素按顺序存储和查找稍微慢一些也能接受,选择 SortedSet<T>

这两个集合类都实现了 ISet<T> 接口,因此在使用集合操作时有类似的 API。根据你的具体需求选择适合的集合类型。

c# 中与pari相似的容器

在 C# 中,与 C++ 中的 std::pair 类似的容器是 TupleKeyValuePair

Tuple

Tuple 是一个通用的数据结构,可以存储一组相关的值。以下是一个示例,展示如何使用 Tuple

using System;class Program
{static void Main(){// 创建一个Tuple来存储两个相关的值Tuple<int, string> person = new Tuple<int, string>(1, "John Doe");// 访问Tuple的元素int id = person.Item1;string name = person.Item2;Console.WriteLine($"ID: {id}, Name: {name}");}
}

KeyValuePair

KeyValuePair 是一种特定类型的容器,常用于字典(Dictionary)中来存储键值对。以下是一个示例,展示如何使用 KeyValuePair

using System;
using System.Collections.Generic;class Program
{static void Main(){// 创建一个Dictionary来存储键值对Dictionary<int, string> people = new Dictionary<int, string>();// 添加键值对到Dictionary中people.Add(1, "John Doe");people.Add(2, "Jane Doe");// 访问Dictionary中的元素foreach (KeyValuePair<int, string> person in people){Console.WriteLine($"ID: {person.Key}, Name: {person.Value}");}}
}

使用 KeyValuePair 单独创建键值对

你也可以单独创建 KeyValuePair 对象,而不使用 Dictionary

using System;
using System.Collections.Generic;class Program
{static void Main(){// 创建一个KeyValuePair来存储两个相关的值KeyValuePair<int, string> person = new KeyValuePair<int, string>(1, "John Doe");// 访问KeyValuePair的元素int id = person.Key;string name = person.Value;Console.WriteLine($"ID: {id}, Name: {name}");}
}

比较 Tuple 和 KeyValuePair

  • Tuple 可以包含多个值(不仅限于两个),可以创建 Tuple<T1, T2, T3, ...>
  • KeyValuePair 是一种特定的容器,通常用于字典数据结构,具有明确的键和值。

根据你的具体需求,选择合适的数据结构。如果你需要存储一对值,并且它们是键值对关系,KeyValuePair 是一个不错的选择。如果你需要存储多于两个的相关值,Tuple 会更合适。

c# List 求最大值
在 C# 中,可以使用 List<T> 来存储一系列元素,并通过多种方式来求取最大值。最常用的方法是使用 LINQ 提供的 Max 方法。以下是几种常见的求最大值的方法:

使用 LINQ 的 Max 方法

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers = new List<int> { 5, 10, 3, 8, 15 };// 使用 LINQ 的 Max 方法int maxNumber = numbers.Max();Console.WriteLine($"The maximum number is {maxNumber}");}
}

使用循环求最大值

using System;
using System.Collections.Generic;class Program
{static void Main(){List<int> numbers = new List<int> { 5, 10, 3, 8, 15 };// 使用循环求最大值int maxNumber = int.MinValue;foreach (int number in numbers){if (number > maxNumber){maxNumber = number;}}Console.WriteLine($"The maximum number is {maxNumber}");}
}

使用 IComparer<T>List<T>.Sort 方法

using System;
using System.Collections.Generic;class Program
{static void Main(){List<int> numbers = new List<int> { 5, 10, 3, 8, 15 };// 使用 IComparer<T> 和 List<T>.Sort 方法numbers.Sort();int maxNumber = numbers[numbers.Count - 1];Console.WriteLine($"The maximum number is {maxNumber}");}
}

求取对象列表中的最大值

如果你有一个包含对象的列表,并且想根据对象的某个属性求最大值,可以使用 LINQMax 方法并传递一个选择器。

using System;
using System.Collections.Generic;
using System.Linq;class Person
{public string Name { get; set; }public int Age { get; set; }
}class Program
{static void Main(){List<Person> people = new List<Person>{new Person { Name = "Alice", Age = 30 },new Person { Name = "Bob", Age = 25 },new Person { Name = "Charlie", Age = 35 }};// 使用 LINQ 的 Max 方法求最大年龄int maxAge = people.Max(p => p.Age);Console.WriteLine($"The maximum age is {maxAge}");}
}

这些方法都能有效地求取 List<T> 中的最大值,根据具体需求选择合适的方法。一般情况下,使用 LINQMax 方法最为简洁和方便。

判断List是否为空

在 C# 中,可以通过多种方式来判断一个 List<T> 是否为空。以下是一些常见的方法:

使用 Count 属性

这是最直接的方法,通过检查 List<T>Count 属性来判断是否为空。

using System;
using System.Collections.Generic;class Program
{static void Main(){List<int> numbers = new List<int>();// 使用 Count 属性判断是否为空if (numbers.Count == 0){Console.WriteLine("The list is empty.");}else{Console.WriteLine("The list is not empty.");}}
}

使用 Any 方法

LINQ 提供的 Any 方法也可以用来检查列表是否为空。Any 方法返回一个布尔值,指示是否存在任何元素。

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers = new List<int>();// 使用 LINQ 的 Any 方法判断是否为空if (!numbers.Any()){Console.WriteLine("The list is empty.");}else{Console.WriteLine("The list is not empty.");}}
}

直接检查 List<T> 是否为 null

在实际应用中,还应该考虑列表本身是否为 null。在这种情况下,先判断列表是否为 null,再判断列表是否为空。

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers = null;// 检查列表是否为 nullif (numbers == null){Console.WriteLine("The list is null.");}else if (numbers.Count == 0){Console.WriteLine("The list is empty.");}else{Console.WriteLine("The list is not empty.");}}
}

综合判断(处理 null 和空列表)

可以将判断 null 和空列表的逻辑合并为一个方法,方便重复使用:

using System;
using System.Collections.Generic;class Program
{static void Main(){List<int> numbers = null;if (IsNullOrEmpty(numbers)){Console.WriteLine("The list is null or empty.");}else{Console.WriteLine("The list is not empty.");}}static bool IsNullOrEmpty<T>(List<T> list){return list == null || list.Count == 0;}
}

这些方法都可以有效地判断 List<T> 是否为空。根据具体场景的需求选择合适的方法。一般情况下,使用 Count 属性或者 LINQAny 方法最为常见和简洁。如果需要同时处理 null 和空列表的情况,可以使用综合判断方法。

取List第一个元素

在 C# 中,可以通过多种方式获取 List<T> 的第一个元素。以下是一些常见的方法:

使用索引

这是最直接的方法,通过索引来访问 List<T> 的第一个元素。需要注意的是,在访问之前应该检查列表是否为空,以避免 IndexOutOfRangeException 异常。

using System;
using System.Collections.Generic;class Program
{static void Main(){List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };if (numbers.Count > 0){int firstElement = numbers[0];Console.WriteLine("The first element is: " + firstElement);}else{Console.WriteLine("The list is empty.");}}
}

使用 First 方法

LINQ 提供的 First 方法可以用于获取列表的第一个元素。需要导入 System.Linq 命名空间。First 方法在列表为空时会抛出 InvalidOperationException 异常,因此使用之前可以检查列表是否为空,或者使用 FirstOrDefault 方法。

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };if (numbers.Any()){int firstElement = numbers.First();Console.WriteLine("The first element is: " + firstElement);}else{Console.WriteLine("The list is empty.");}}
}

使用 FirstOrDefault 方法

FirstOrDefault 方法在列表为空时不会抛出异常,而是返回默认值。对于引用类型,默认值是 null;对于值类型,默认值是类型的默认值(例如 int 的默认值是 0)。

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };int firstElement = numbers.FirstOrDefault();if (numbers.Any()){Console.WriteLine("The first element is: " + firstElement);}else{Console.WriteLine("The list is empty.");}}
}

综合判断并获取第一个元素的方法

可以将判断列表是否为空和获取第一个元素的逻辑合并到一个方法中:

using System;
using System.Collections.Generic;class Program
{static void Main(){List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };int? firstElement = GetFirstElement(numbers);if (firstElement.HasValue){Console.WriteLine("The first element is: " + firstElement.Value);}else{Console.WriteLine("The list is empty.");}}static int? GetFirstElement(List<int> list){if (list == null || list.Count == 0){return null;}return list[0];}
}

在这个例子中,GetFirstElement 方法返回一个 Nullable<int>,即 int? 类型,以便处理空列表的情况。在调用该方法后,可以检查返回值是否有值(即 HasValue 属性),然后再使用值(通过 Value 属性)。

这些方法都可以有效地获取 List<T> 的第一个元素。根据具体的应用场景选择合适的方法。如果需要同时处理 null 和空列表的情况,可以使用综合判断的方法。

判断HashSet中是否有这个元素

在 C# 中,可以使用 HashSet<T>Contains 方法来判断集合中是否包含特定元素。HashSet<T> 是一个非常高效的数据结构,用于存储唯一值,并且其查找操作的平均时间复杂度为 O(1)。

下面是一个示例代码,展示如何在 HashSet<int> 中判断是否包含某个元素:

using System;
using System.Collections.Generic;class Program
{static void Main(){// 创建一个HashSet并添加一些元素HashSet<int> numbers = new HashSet<int> { 1, 2, 3, 4, 5 };// 要查找的元素int elementToFind = 3;// 判断HashSet中是否包含该元素if (numbers.Contains(elementToFind)){Console.WriteLine($"HashSet contains the element {elementToFind}.");}else{Console.WriteLine($"HashSet does not contain the element {elementToFind}.");}}
}

在上面的示例中,我们首先创建了一个包含整数的 HashSet 并添加了一些元素。然后,我们使用 Contains 方法检查 HashSet 中是否存在指定的元素 elementToFind

解释

  • HashSet<int> numbers = new HashSet<int> { 1, 2, 3, 4, 5 };:创建一个 HashSet 并初始化一些整数元素。
  • int elementToFind = 3;:要查找的元素。
  • if (numbers.Contains(elementToFind)):使用 Contains 方法判断 HashSet 中是否包含 elementToFind
  • 如果包含,输出 “HashSet contains the element {elementToFind}.”。
  • 否则,输出 “HashSet does not contain the element {elementToFind}.”。

Contains 方法返回一个布尔值,指示 HashSet 是否包含指定的元素。这使得查找操作变得非常简单和高效。

tuple 求double 求出最小值对应的项

要在一个包含 Tuple<int, double>List 中找到 double 最小值对应的 Tuple<int, double> 项,可以使用 LINQ。这里是一个示例代码,演示如何实现这一点:

using System;
using System.Collections.Generic;
using System.Linq;class Program
{static void Main(){// 创建一个包含 Tuple<int, double> 的列表List<Tuple<int, double>> list = new List<Tuple<int, double>>(){new Tuple<int, double>(1, 10.5),new Tuple<int, double>(2, 5.75),new Tuple<int, double>(3, 7.3),new Tuple<int, double>(4, 3.8),new Tuple<int, double>(5, 9.1)};// 使用 LINQ 来找到 double 的最小值对应的项var minItem = list.Aggregate((min, next) => next.Item2 < min.Item2 ? next : min);Console.WriteLine($"The item with the minimum double value is: ({minItem.Item1}, {minItem.Item2})");}
}

解释

  1. List<Tuple<int, double>>: 创建一个包含 Tuple<int, double> 的列表。每个元组包含一个整数和一个双精度浮点数。

  2. LINQ Aggregate 方法: list.Aggregate((min, next) => next.Item2 < min.Item2 ? next : min) 使用 LINQ 的 Aggregate 方法来找到 double 最小值对应的项。这里的 Aggregate 方法接受两个参数,minnext,并通过比较 next.Item2min.Item2 来更新 min,从而找到具有最小 double 值的项。

  3. 输出结果: 将找到的具有最小 double 值的项打印出来。

输出结果

运行上述代码后,控制台将输出:

The item with the minimum double value is: (4, 3.8)

使用其他方法

你还可以使用 LINQ 的 OrderBy 方法来实现同样的结果:

var minItem = list.OrderBy(t => t.Item2).First();
Console.WriteLine($"The item with the minimum double value is: ({minItem.Item1}, {minItem.Item2})");

这种方法首先按照 double 值对列表进行排序,然后使用 First() 方法获取排序后的第一个元素,即 double 值最小的项。

这两种方法都可以找到 Tuple<int, double> 列表中 double 最小值对应的项。选择哪种方法取决于个人偏好和具体场景。

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

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

相关文章

SELECT语句的基本结构遵循一定的顺序

在MySQL中&#xff0c;SELECT语句的基本结构遵循一定的顺序&#xff0c;虽然在编写SQL时不一定严格按此顺序排列&#xff0c;但理解这一逻辑顺序有助于更好地组织和阅读SQL代码。SELECT语句的一般格式如下&#xff1a; SELECT[DISTINCT | DISTINCTROW][TOP n] select_expressi…

启智CV机器人,ROS,ubuntu 20.04 【最后一步有问题】

资料&#xff1a; https://wiki.ros.org/kinetic/Installation/Ubuntu https://blog.csdn.net/qq_44339029/article/details/120579608 装VM。 装ubuntu20.04 desktop.iso系统。 装vm工具&#xff1a; sudo apt update sudo dpkg --configure -a sudo apt-get autoremove o…

逻辑回归|logistic回归原理

文章目录 逻辑回归问题描述模型建模模型求解多分类 逻辑回归 问题描述 首先我们考虑一个二分类的问题&#xff0c;假设我们有一个观测向量 x ( x 1 , x 2 , . . . , x m ) \mathbf{x} (x_1, x_2, ..., x_m) x(x1​,x2​,...,xm​)&#xff0c;其中 m m m 是特征的数量&am…

拉普拉斯IPO:科技与产业深度融合,实现业务领域延展

我国拥有全球最具竞争优势的光伏产业链&#xff0c;基于降本增效的需求&#xff0c;光伏产业对于技术革新具有持续的需求。拉普拉斯新能源科技股份有限公司&#xff08;以下简称“拉普拉斯”&#xff09;凭借深厚的技术积累&#xff0c;以及对光伏产业深刻的理解&#xff0c;聚…

zabbix配置自动发现规则模版-snmp

配置-->模版-->创建模版 找到刚才创建的模版进行编辑 创建一个自动发现规则&#xff08;SNMP OID 一般配置表中较有代表性的字段的OID&#xff09; 修改监控项原型 创建一台主机并链接模版 测试&#xff0c;获得预计自动发现的监控项的值 上述测试不为空&#xff0c…

成都蓝蛙科技引领AIGC创新,亮相中国AIGC开发者大会

2024年5月25日&#xff0c;第三届AIGC中国开发者大会在北京举行&#xff0c;蓝蛙科技公司CEO兼创始人李辰受邀出席并发表主题演讲。作为开源框架GeneralAgent的作者&#xff0c;发表了题为“Agent框架的挑战和解决方案”的精彩演讲。李辰先生深入探讨了在构建和部署基于大型语言…

【C++】数据结构:哈希桶

哈希桶&#xff08;Hash Bucket&#xff09;是哈希表&#xff08;Hash Table&#xff09;实现中的一种数据结构&#xff0c;用于解决哈希冲突问题。哈希表是一种非常高效的数据结构&#xff0c;它通过一个特定的函数&#xff08;哈希函数&#xff09;将输入数据&#xff08;通常…

移动应用程序设计详解:基本概念和原理

移动应用程序设计是什么&#xff1f; 一般来说&#xff0c;应用程序设计师的核心职责是让用户有体验应用的欲望&#xff0c;而开发者负责让它正常工作。移动应用程序设计包括用户界面 (UI) 和用户体验 (UX)。设计者负责应用程序的整体风格&#xff0c;包括配色方案、字体选择、…

基于分块贝叶斯非局部均值优化(OBNLM)的图像去噪算法matlab仿真

目录 1.程序功能描述 2.测试软件版本以及运行结果展示 3.核心程序 4.本算法原理 4.1 块定义与相似度计算 ​4.2 贝叶斯框架下的加权融合 4.3 加权最小均方误差估计 5.完整程序 1.程序功能描述 基于分块贝叶斯非局部均值优化(OBNLM)的图像去噪算法matlab仿真&#xff0c…

k8s ceph(静态pvc)

1.在 Kubernetes 节点上安装ceph-common 包。这个包包含了连接到 Ceph 集群所需的工具和库。可以使用以下命令在每个节点上安装&#xff1a; sudo apt-get install ceph-common2.在 Kubernetes 中创建一个 Secret 对象&#xff0c;用于存储连接到 Ceph 集群所需的密钥和配置信息…

SA316系列音频传输模块-传输距离升级音质不打折

SA316是思为无线研发的一款远距离音频传输模块&#xff0c;音频采样率为48K&#xff0c;传输距离可达200M。为了满足更多用户需求&#xff0c;思为无线在SA316基础上进一步增加传输距离推出SA316F30。相比SA316性能&#xff0c;同样其采用48K采样&#xff0c;-96dBm灵敏度&…

SAP PP学习笔记 - 错误 CX_SLD_API_EXCEPTION - Job dump is not fully saved (too big)

我这个错误是跑完MRP&#xff0c;然后在MD04查看在库/所有量一览&#xff0c; 点计划手配&#xff08;Planned order 计划订单&#xff09;生成 制造指图&#xff08;Production order 生产订单&#xff09;&#xff0c; 到目前这几步都OK&#xff0c;然后在制造指图界面点保…

Linux之sshpass命令

介绍 sshpass是一个工具&#xff0c;用于通过SSH连接到远程服务器时自动输入密码。它允许您在命令行中指定密码&#xff0c;以便在建立SSH连接时自动进行身份验证。 安装 # 以centos为例 yum install sshpass -y 使用方法 sshpass [-f filename | -d num | -p password | …

校园周边美食探索及分享平台,基于 SpringBoot+Vue+MySQL 开发的前后端分离的校园周边美食探索及分享平台设计实现

目录 一. 前言 二. 功能模块 2.1. 前台首页功能模块 2.2. 用户功能模块 2.3. 管理员功能模块 三. 部分代码实现 四. 源码下载 一. 前言 美食一直是与人们日常生活息息相关的产业。传统的电话订餐或者到店消费已经不能适应市场发展的需求。随着网络的迅速崛起&#xff0…

Makefile学习笔记19|u-boot顶层Makefile05

Makefile学习笔记19|u-boot顶层Makefile05 希望看到这篇文章的朋友能在评论区留下宝贵的建议来让我们共同成长&#xff0c;谢谢。 这里是目录 定义常见构建工具变量 # Make variables (CC, etc...)AS $(CROSS_COMPILE)as # Always use GNU ld ifneq ($(shell $(CROSS_COMPI…

Vue从入门到实战Day12~14 - Vue3大事件管理系统

一、用到的知识 Vue3 compositionAPIPinia / Pinia持久化处理Element Plus(表单校验&#xff0c;表格处理&#xff0c;组件封装)pnpm 包管理升级Eslint prettier 更规范的配置husky&#xff08;Git hooks工具&#xff09;&#xff1a;代码提交之前&#xff0c;进行校验请求模…

OrangePi Kunpeng Pro ——信创再接力

文章目录 OrangePi Kunpeng Pro ——信创再接力1. 绪论1.1 开箱 2. 硬件介绍2.1 硬件配置2.2 硬件清单 3. 网络测试3.1 有线连接3.2 WIFI连接 4.查看系统配置5. 安装常用软件5.1 安装python5.1.1 更换pip源为国内清华源 5.2 安装docker5.3 安装opencv5.4 安装dlib 6.CPU多进程能…

LeetCode //C - 143. Reorder List

143. Reorder List You are given the head of a singly linked-list. The list can be represented as: L0 → L1 → … → Ln - 1 → Ln Reorder the list to be on the following form: L0 → Ln → L1 → Ln - 1 → L2 → Ln - 2 → … You may not modify the values i…

MVCC机制

个人理解篇&#xff0c;不一定对&#xff0c;应付面试的时候看的 MVCC(Multi-Version Concurrency Control)全称多版本并发控制&#xff0c;主要用在隔离模式下的提交读、可重复读模式下&#xff0c;依赖于readview和undolog链 一、readview 1、结构 字段 备注 m_ids 活跃…

如何优化大文件读取时的性能

1、分块读取 1、不要一次性将整个文件加载到内存中&#xff0c;而是将其分割成多个较小的块&#xff08;例如&#xff0c;每块1MB或更大&#xff09;&#xff0c;然后逐块读取和处理。 2、使用FileInputStream和BufferedInputStream来分块读取文件。 2、使用缓冲区 1、使用…