Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C++

उदाहरण के साथ सी ++ एसटीएल में ऐरे डेटा ()

सरणी निरंतर स्मृति स्थानों में संग्रहीत समान डेटा प्रकार के तत्वों का संग्रह है।

सी ++ मानक पुस्तकालय में कई पुस्तकालय हैं जो सरणी के कामकाज का समर्थन करते हैं। उनमें से एक सरणी डेटा () विधि है।

सी ++ में सरणी डेटा () ऑब्जेक्ट के पहले तत्व की ओर इशारा करते हुए एक पॉइंटर देता है।

सिंटैक्स

array_name.data();

पैरामीटर

फ़ंक्शन द्वारा स्वीकार किए गए कोई पैरामीटर नहीं हैं।

वापसी का प्रकार

सरणी के पहले तत्व के लिए एक सूचक।

उदाहरण

ऐरे डेटा के उपयोग को दर्शाने वाला कार्यक्रम () विधि -

#include <bits/stdc++.h>
using namespace std;
int main(){
   array<float, 4> percentage = { 45.2, 89.6, 99.1, 76.1 };
   cout << "The array elements are: ";
   for (auto it = percentage.begin(); it != percentage.end(); it++)
   cout << *it << " ";
   auto it = percentage.data();
   cout << "\nThe first element is:" << *it;
   return 0;
}

आउटपुट

The array elements are: 45.2 89.6 99.1 76.1
The first element is:45.2

उदाहरण

ऐरे डेटा () पद्धति के उपयोग को दर्शाने के लिए कार्यक्रम

#include <bits/stdc++.h>
using namespace std;
int main(){
   array<float, 4> percentage = { 45.2, 89.6, 99.1, 76.1 };
   cout << "The array elements are: ";
   for (auto it = percentage.begin(); it != percentage.end(); it++)
   cout << *it << " ";
   auto it = percentage.data();
   it++;
   cout << "\nThe second element is: " << *it;
   it++;
   cout << "\nThe third element is: " << *it;
   return 0;
}

आउटपुट

The array elements are: 45.2 89.6 99.1 76.1
The second element is: 89.6
The third element is: 99.1

  1. सी ++ एसटीएल में ऐरे ::भरें () और सरणी ::स्वैप ()?

    इस खंड में हम देखेंगे कि C++ STL में array::fill() और array::swap() के उपयोग क्या हैं। सरणी ::भरण () फ़ंक्शन का उपयोग कुछ निर्दिष्ट मान के साथ सरणी को भरने के लिए किया जाता है। आइए विचार प्राप्त करने के लिए एक उदाहरण देखें। उदाहरण #include<iostream> #include<array> using namespace std;

  1. सी ++ एसटीएल में ऐरे प्राप्त () फ़ंक्शन?

    इस खंड में हम C++ STL में ऐरे का get() फंक्शन देखेंगे। इस फ़ंक्शन का उपयोग सरणी कंटेनर के ith तत्व को प्राप्त करने के लिए किया जाता है। सिंटैक्स नीचे जैसा है - सिंटैक्स get<i> array_name यह फ़ंक्शन दो अनिवार्य पैरामीटर लेता है। सूचकांक पैरामीटर है। इसका उपयोग सरणी की ith स्थिति को इंगित करने

  1. सी ++ प्रोग्राम एसटीएल में ऐरे को लागू करने के लिए

    ऐरे और स्यूडोकोड पर अलग-अलग ऑपरेशन: Begin In main(),    While TRUE do       Prints some choices.       Take input of choice.       Start the switch case          When case is 1             P