叠加。在 C# 中包含()方法
原文:https://www . geesforgeks . org/stack-contains-method-in-c-sharp/
该方法(属于系统。集合命名空间)用于检查指定元素是否存在是否为堆栈。在内部,这个方法通过调用对象来检查是否相等。等于法。此外,它执行线性搜索,因此,该方法是 O(n) 操作,其中 n 是计数。
语法:
public virtual bool Contains (object obj);
这里, obj 是要在堆栈中定位的对象。该值可以是空值。
返回值:如果在堆栈中找到对象,返回真,否则返回假。
以下程序说明了上述方法的使用:
例 1:
// C# code to illustrate the
// Stack.Contains() Method
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a Stack
Stack myStack = new Stack();
// Inserting the elements into the Stack
myStack.Push("Geeks");
myStack.Push("Geeks Classes");
myStack.Push("Noida");
myStack.Push("Data Structures");
myStack.Push("GeeksforGeeks");
// Checking whether the element is
// present in the Stack or not
// The function returns True if the
// element is present in the Stack,
// else returns False
Console.WriteLine(myStack.Contains("GeeksforGeeks"));
}
}
Output:
True
例 2:
// C# code to illustrate the
// Stack.Contains() Method
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a Stack
Stack myStack = new Stack();
// Inserting the elements
// into the Stack
myStack.Push(5);
myStack.Push(10);
myStack.Push(15);
myStack.Push(20);
myStack.Push(25);
// Checking whether the element is
// present in the Stack or not
// The function returns True if the
// element is present in the Stack, else
// returns False
Console.WriteLine(myStack.Contains(7));
}
}
Output:
False
参考:
版权属于:月萌API www.moonapi.com,转载请注明出处