此方法用于搜索与指定谓词定义的条件相匹配的元素,并返回List <T>或其一部分中最后一次出现的从零开始的索引。此方法的重载列表中有3种方法:
在这里,我们将仅讨论最后两种方法。
FindLastIndex(Int32, Predicate<T>) Method
此方法搜索与指定谓词定义的条件匹配的元素,并返回从第一个元素到指定索引的List <T>中的元素范围内最后一次出现的从零开始的索引。
用法: public int FindLastIndex (int start, Predicate<T> match);
参数:
start:这是从搜索开始的起始索引。
match:这是谓词委托,它定义了搜索元素的条件。
返回值:如果找到该元素,则它将返回与参数“match”匹配指定条件的元素最后一次出现的Int32类型的从零开始的索引。如果未找到,则返回“-1”。
异常:
- ArgumentNullException:如果匹配为空。
- ArgumentOutOfRangeException:如果开始超出List <T>的有效索引范围。
以下示例程序旨在说明上述方法的使用:
范例1:
// C# program to illustrate the
// List<T>.FindLastIndex(Int32,
// Predicate <T>) Method
using System;
using System.Collections.Generic;
class GFG {
// Main Method
public static void Main()
{
// List creation
// List name is "PC"
List<string> PC = new List<string>();
// elements in the List
PC.Add("Computer");
PC.Add("keyboard");
PC.Add("laptop");
PC.Add("mouse");
// the search will starts from index 2
int indx = PC.FindLastIndex(2, FindIndex);
Console.WriteLine(indx);
}
// Conditional method
private static bool FindIndex(string g)
{
if (g == "Computer")
{
return true;
}
else
{
return false;
}
}
}
输出:
0
范例2:
// C# program to illustrate the
// List<T>.FindLastIndex(Int32,
// Predicate <T>) Method
using System;
using System.Collections.Generic;
class GFG {
// Main Method
public static void Main()
{
// List creation
// List name is "PC"
List<int> PC = new List<int>();
// elements in the List
PC.Add(3);
PC.Add(4);
PC.Add(5);
PC.Add(6);
// condition is "FindIndex"
int indx = PC.FindLastIndex(2, FindIndex);
Console.WriteLine(indx);
}
// Conditional method
private static bool FindIndex(int g)
{
// search for "5"
if (g == 5)
{
return true;
}
else
{
return false;
}
}
}
输出:
2
范例3:在此示例中,我们使用XML文件并从起始索引中搜索项目并打印该项目的索引,如果未找到该项目,则打印“-1”,如果找到则打印索引。该项目是“GeeksForGeeks”。但是这里我们没有XML文件,这里编译器给出了一个例外。
// C# program to illustrate the
// List<T>.FindLastIndex(Int32,
// Predicate <T>) Method
using System;
using System.Collections.Generic;
using System.Linq;
class GFG {
// here List<T> contains the object "gfg" using
// data from a sample XML file
// List initialize
private static List<gfg> geeks = new List<gfg>();
public static void Main()
{
// if the item is found then
// it prints the index
// if not found prints "-1"
int x = geeks.FindLastIndex(3, FindGFG);
Console.WriteLine(x);
}
// conditional method
private static bool FindGFG(gfg g)
{
// item is "GeeksForGeeks"
if (g.G == "GeeksForGeeks")
{
return true;
}
else
{
return false;
}
}
}
public class gfg {
public string G
{
get;
set;
}
}
运行时错误:
Unhandled Exception:
System.ArgumentOutOfRangeException:ArgumentOutOfRange_Index
Parameter name:startIndex
FindLastIndex(Int32, Int32, Predicate<T>) Method
此方法搜索与指定谓词定义的条件匹配的元素,并返回整个List中最后一次出现的从零开始的索引,并且该列表包含指定数目的元素并在指定索引处结束。
用法: public int FindLastIndex (int startIndex, int count, Predicate<T> match);
参数:
startIndex:它是向后搜索的从零开始的索引。
count:这是要搜索的部分中元素的数量。
match:Predicate <T>委托定义了要搜索的元素的条件。
返回值:如果找到该元素,则它将返回最后一个与参数“match”匹配指定条件的元素的Int32类型的从零开始的索引。如果未找到,则返回“-1”。
异常:
- ArgumentNullException:如果“match”为null。
- ArgumentOutOfRangeException:如果“startIndex”超出范围,或者“count”小于0(零),或者“startIndex”和“count”在列表中未指定有效部分
例:
// C# Program to illustrate the
// FindLastIndex(Int32, Int32,
// Predicate<T>) Method
using System;
using System.Collections.Generic;
class GFG
{
public static void Main()
{
// List name is "mylist"
List<string> mylist = new List<string>();
// Elements in the List
mylist.Add("C");
mylist.Add("C++");
mylist.Add("Java");
mylist.Add("Python");
mylist.Add("C#");
mylist.Add("HTML");
mylist.Add("Java");
mylist.Add("PHP");
// the search will starts from index 2
// the number of element is 3
int indx = mylist.FindLastIndex(2, 3, FindIndex);
Console.WriteLine("The index of Java is:"+indx);
}
// Conditional method
private static bool FindIndex(string g)
{
if (g == "Java")
{
return true;
}
else
{
return false;
}
}
}
输出:
The index of Java is:2
注意:
- 从startIndex开始到第一个元素结束向后搜索List <T>。
- Predicate <T>是方法的委托,如果传递给它的对象与委托中定义的条件匹配,则该方法返回true。当前List <T>的元素分别传递给Predicate <T>委托。
- 此方法执行线性搜索;因此,此方法是O(n)运算,其中n是从List <T>的开头到开头的元素数。
相关用法
- C# List FindLastIndex()方法用法及代码示例
- C# List BinarySearch()用法及代码示例
- C# List.TrimExcess用法及代码示例
- C# List.FindIndex()用法及代码示例
注:本文由纯净天空筛选整理自SoumikMondal大神的英文原创作品 List FindLastIndex() Method in C# | Set -2。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。