কম্পিউটার

C# এ Array.BinarySearch পদ্ধতি


BinarySearch পদ্ধতি ব্যবহার করে অ্যারে উপাদানের অবস্থান পান।

একটি স্ট্রিং অ্যারে সেট করুন −

string[] str = { "a", "m", "i", "t"};

এখন Array.BinarySearch -

ব্যবহার করে 't' অক্ষরের অবস্থান পান
Array.BinarySearch(str, "t");

এখানে সম্পূর্ণ কোড −

উদাহরণ

using System;
using System.Text;
public class Demo {
   public static void Main() {
      string[] str = { "a", "m", "i", "t"};
      // Using BinarySearch method to get location of character 't'
      int res = Array.BinarySearch(str, "t");
      // displaying the location
      Console.WriteLine("Index : "+res);
   }
}

আউটপুট

Index : 3

  1. জাভাস্ক্রিপ্ট অ্যারে থেকে() পদ্ধতি

  2. JavaScript Array.join() পদ্ধতি

  3. JavaScript Array.isArray() পদ্ধতি

  4. JavaScript array.includes() পদ্ধতি