使用LINQ的List集合where()方法查找姓名以“S”开头的学生列表的C#程序
介绍
本文将学习如何编写一个C#程序,使用LINQ的List集合where()方法查找姓名以'S'开头的学生列表。
语言集成查询,即LINQ,用于在C#语言中生成查询。以前我们必须使用其他关系语言,如SQL和XML。它为C#语言或任何其他.NET语言提供了更强大的功能。在LINQ中用于查询数据库的语法与查询存储在数组中的数据相同。
在我们继续学习C#程序的算法和代码之前,该程序使用LINQ的where()方法和List集合查找姓名以'S'开头的学生列表,让我们先回顾一下LINQ的简写。
语言集成查询 (LINQ)
LINQ是.NET框架的一部分,它使用户能够以类型安全的方式更轻松地检索数据。这是在.NET 3.5版本中引入的。
LINQ最好的特性是它提供了一种单一方法来访问来自多个数据源的数据,包括数据库和XML文档。借助LINQ,用户可以编写更容易理解、更简洁、更美观的代码。它还提供其他功能,例如过滤、排序、分组数据甚至更改数据。
现在,是时候介绍一下where()方法,也称为Enumerable.Where()方法,它属于System.Linq命名空间。
Where<TSource>(IEnumerable<TSources>,Func<T Source,Boolean>)
此方法属于System.Linq命名空间。它根据谓词过滤值序列。让我们看看它的定义语法:
public static System.Collections.Generic.IEnumerable<TSource> Where<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
此方法具有类型参数TSource,它说明源元素的类型。另外两个参数是源(一个要过滤的IEnumerable<T>)和谓词(一个函数,用于测试每个元素是否满足条件)。
这是一个返回方法,它返回输入序列中满足条件的项的集合,表示为IEnumerable<T>。当谓词或源为null时,可能会抛出ArgumentNullException异常。
我们将使用一个问题陈述,这将使理解where()方法的概念变得非常容易。
在一所学校里,有一个国际象棋队,由来自不同班级的5名成员组成:Ankit、Abhinay、Shubham、Shreyank、Shahnawaz。他们学习不同的课程。将提供带有'S'首字母的运动夹克。为了知道姓名以'S'开头的学生姓名,校长要求你编写一个程序来选择姓名以'S'开头的学生姓名。
在下一节中,我们将讨论编写C#程序的算法,该程序使用LINQ的where()方法和List集合查找姓名以'S'开头的学生列表。
算法
使用where()方法编写程序代码时,需要遵循以下步骤。
步骤1 - 请记住声明使用where()方法的正确命名空间,即System.Linq。
步骤2 - 开始类代码并声明三个变量来存储学生的学号、班级和姓名。
步骤3 - 在下一步中,我们创建字符串方法,该方法返回学生的学号、姓名和年级。
步骤4 - 在main()部分,我们声明列表变量,然后将数据添加到列表中。
步骤5 - 现在我们使用where()方法根据用户提供的谓词过滤所需信息。
步骤6 - 在此步骤中,我们显示获取的详细信息并结束程序。
示例
让我们用一个例子来讨论这个问题。
using System.Linq; using System; using System.Collections.Generic; using System.Threading.Tasks; using System.Text; class Student{ // Three variables to store roll number, class, and name of the student int roll; int std; string name; // Creating the string method which returns roll number, name, and standard of student public override string ToString(){ return roll + " " + name + " " + std; } static void Main(string[] args){ // Declaring a list variable List<Student> student = new List<Student>(){ // Details of students of the chess team new Student{ roll = 21, name = "Ankit", std = 10 }, new Student{ roll = 12, name = "Abhinay", std = 10 }, new Student{ roll = 07, name = "Shubham", std = 11 }, new Student{ roll = 14, name = "Shreyank", std = 12 }, new Student{ roll = 10, name = "Shanawaz", std = 11 } }; // Using the Where() function we search through the student details IEnumerable<Student> Query = student.Where(s => s.name[0] == 'S'); // Displaying the student details Console.WriteLine("Roll Name Standard"); Console.WriteLine("- - - - - - - - - - - - - - - - - "); foreach (Student e in Query) { // Call the to string method Console.WriteLine(e.ToString()); } } }
输出
Roll Name Standard - - - - - - - - - - - - - - - - - 07 Shubham 11 14 Shreyank 12 10 Shanawaz 11
时间复杂度
where()方法的时间复杂度是常数,在大O表示法中可以称为O(1)。因此,整个代码的时间复杂度为O(1)。
结论
在本文中,我们讨论了使用LINQ的List集合where()方法查找姓名以'S'开头的学生列表的C#程序。我们理解了where()方法。然后我们理解了算法,最后我们学习了代码。然后我们了解了代码的时间复杂度。
我们希望本文能帮助你提高对C#的了解。