কম্পিউটার

একটি স্ট্যাকের C# এ একটি উপাদান রয়েছে কিনা তা পরীক্ষা করুন


একটি স্ট্যাকের উপাদান আছে কিনা তা পরীক্ষা করতে, C# Contains() পদ্ধতি ব্যবহার করুন। নিম্নলিখিত কোড -

উদাহরণ

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      Stack<int> stack = new Stack<int>();
      stack.Push(100);
      stack.Push(150);
      stack.Push(175);
      stack.Push(200);
      stack.Push(225);
      stack.Push(250);
      stack.Push(300);
      stack.Push(400);
      stack.Push(450);
      stack.Push(500);
      Console.WriteLine("Elements in the Stack:");
      foreach(var val in stack){
         Console.WriteLine(val);
      }
      Console.WriteLine("Count of elements in the Stack = "+stack.Count);
      Console.WriteLine("Does Stack has the element 400?= "+stack.Contains(400));
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
Elements in the Stack:
500
450
400
300
250
225
200
175
150
100
Count of elements in the Stack = 10 Does Stack has the element40400?= True

উদাহরণ

আসুন আরেকটি উদাহরণ দেখি -

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      Stack<string> stack = new Stack<string>();
      stack.Push("Steve");
      stack.Push("Gary");
      stack.Push("Stephen");
      stack.Push("Nathan");
      stack.Push("Katie");
      stack.Push("Andy");
      stack.Push("David");
      stack.Push("Amy");
      Console.WriteLine("Elements in the Stack:");
      foreach(var val in stack){
         Console.WriteLine(val);
      }
      Console.WriteLine("Count of elements in the Stack = "+stack.Count);
      Console.WriteLine("Does Stack has the element 400?= "+stack.Contains("Michael"));
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
Elements in the Stack:
Amy
David
Andy
Katie
Nathan
Stephen
Gary
Steve
Count of elements in the Stack = 8 Does Stack has the element 400?= False

  1. C# এ Stack.GetEnumerator() পদ্ধতি

  2. C# এ Stack.Equals() পদ্ধতি

  3. C# এ স্ট্যাক ক্লাস কি?

  4. সি# এ স্ট্যাক ক্লাসে পুশ বনাম পপ