কম্পিউটার

C++ STL-এ find() ফাংশন সেট করুন


C++ STL-এ সেট find() ফাংশন সেট কন্টেইনারে অনুসন্ধান করা উপাদানটিতে একটি পুনরাবৃত্তিকারী প্রদান করে। পুনরাবৃত্ত সেটের শেষ উপাদানটির ঠিক পরে অবস্থান নির্দেশ করে, যদি উপাদানটি না পাওয়া যায়।

অ্যালগরিদম

Begin
   Define function printS() to print elements of set container.
   initialize an empty set container s. Insert some elements in s
   set container. Call function to print elements of set container.
   Call the set find() function to find an element from s set container.
   If element is in the set then
      Print elememt is in the set.
   Else
      Print element is not in the set. 
End.

উদাহরণ কোড

#include<iostream>
#include <bits/stdc++.h>
using namespace std;
int main() {
   set<int> s;
   set<int>::iterator it;
   s.insert(7);
   s.insert(6);
   s.insert(1);
   s.insert(4);
   s.insert(2);
   s.insert(9);
   s.insert(10);
   auto pos = s.find(6);
   cout << "The set elements after 6 are: ";
   for ( it = pos; it != s.end(); it++)
      cout << *it << " ";
   return 0;
}

আউটপুট

The set elements after 6 are: 6 7 9 10

  1. C++ STL-এ নেগেট ফাংশন

  2. C++ STL-এ atan2() ফাংশন

  3. C++ STL-এ acos() ফাংশন

  4. সি++ এসটিএল-এ asinh() ফাংশন