So, As I said that I will be writing in the next post about STL hacks and tricks so here I am with this post.
/*
Container types (and algorithms, functors, and all STL as well) are defined not in the global namespace, but in a special namespace called “std.”
Add the following line after your includes and before the code begin:
using namespace std;
otherwise use: std::'container'
*/
You must have g++ compiler installed on your PC for using it.
STL is mostly used by intermediate users of C++ and it is quite helpful in Competitive Coding, it saves a lot of time and all the algorithms are implemented with the best possible Time and Space Complexities available.
STL is quite vast and we'll be step by step covering all of it, this post is a brief intro of :
The simplest STL container is a vector. A vector is just an array with extended functionality.
Vectors are the same as dynamic arrays with the ability to resize itself automatically when an element is inserted or deleted, with their storage being handled automatically by the container. Vector elements are placed in contiguous storage so that they can be accessed and traversed sequentially. In vectors, data is inserted at the end. Inserting at the end takes differential time, as sometimes there may be a need of extending the array. Removing the last element takes only constant time because no resizing happens. Inserting and erasing at the beginning or in the middle is linear in time.
/*
Important Note :
STL: Standard Library ( To Import It Use: #include<bits/stdc++.h> )Container types (and algorithms, functors, and all STL as well) are defined not in the global namespace, but in a special namespace called “std.”
Add the following line after your includes and before the code begin:
using namespace std;
otherwise use: std::'container'
*/
You must have g++ compiler installed on your PC for using it.
STL is mostly used by intermediate users of C++ and it is quite helpful in Competitive Coding, it saves a lot of time and all the algorithms are implemented with the best possible Time and Space Complexities available.
STL is quite vast and we'll be step by step covering all of it, this post is a brief intro of :
Containers
- Vector
- Pairs
- Iterators
- Set
CONTAINERS
In native C (not C++) there was only one type of container: the array. The problem is not that arrays are limited (though, for example, it’s impossible to determine the size of the array at runtime). But the required functionality of containers is a lot more than we've seen in arrays for example :- To add data dynamically
- To iterate through the container
- To erase any item in the container
- To find an item in the container, etc.
VECTOR
Vectors are the same as dynamic arrays with the ability to resize itself automatically when an element is inserted or deleted, with their storage being handled automatically by the container. Vector elements are placed in contiguous storage so that they can be accessed and traversed sequentially. In vectors, data is inserted at the end. Inserting at the end takes differential time, as sometimes there may be a need of extending the array. Removing the last element takes only constant time because no resizing happens. Inserting and erasing at the beginning or in the middle is linear in time.
PAIR
This container couples together with a pair of values, which may be of different types (T1 and T2). The individual values can be accessed through its public members first and second. STL std::pair is just a pair of elements.ITERATOR
In STL iterators are the most general way to access data in containers. An iterator is any object that, pointing to some element in a range of elements (such as an array or a container), has the ability to iterate through the elements of that range using a set of operators.
Iterators play a critical role in connecting algorithm with containers along with the manipulation of data stored inside the containers. The most obvious form of the iterator is a pointer. A pointer can point to elements in an array and can iterate through them using the increment operator (++).
Operations on iterators:-
Iterators play a critical role in connecting algorithm with containers along with the manipulation of data stored inside the containers. The most obvious form of the iterator is a pointer. A pointer can point to elements in an array and can iterate through them using the increment operator (++).
Operations on iterators:-
1. begin() :- This function is used to return the beginning position of the container.
2. end() :- This function is used to return the after end position of the container.
SET
Set is a container that stores only unique elements in a specific order (by default: ascending ). Set can add, remove, and check the presence of a particular element in O(logN), where N is the count of objects in the set. While adding elements to set, the duplicates are discarded. A count of the elements in the set, N, is returned in O(1). Elements of a set are not contiguous therefore are accessed using Iterators.
To run this code and check it's output visit:
https://www.codiva.io/p/84952a2b-403d-4758-9dad-6c9b5967d828
Stay Tuned For Upcoming Posts on STL subscribe to get updates.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
int main() | |
{ | |
cout<<"--------------Learn Coding For Free------------\n"; | |
/* ( Multi-Line Comment Start ) | |
Vector Syntax : | |
vector< object_type > variable_name; | |
( Multi-Line Comment Ends ) */ | |
vector<int> arr; // declaration of a vector with undefined size | |
// Various Ways To Initialize 1-Dimensional Vector | |
cout<<"\n\n************* 1-D Vectors ************\n\n"; | |
cout<<"First Type of 1-D Declaration & Initialization : "; | |
arr.push_back(10); // push_back : inbuilt function to add elements at end of vector | |
arr.push_back(20); | |
arr.push_back(30); | |
for (auto &x : arr) //same as : for(int x=0;x<arr.size();x++) { cout<<arr[x]<<" ";} | |
cout << x << " "; | |
cout<<"\nSecond Type Of 1-D Declaration & Initialization : "; | |
int n = 3; | |
// Create a vector of size n with all values as 10. | |
vector<int> vect(n, 10); | |
for (auto &i : vect) | |
cout << i << " "; | |
cout<<"\nThird Type Of 1-D Declaration & Initialization : "; | |
vector<int> vec{ 10, 20, 30 }; | |
for (auto &i : vec) | |
cout << i << " "; | |
cout<<"\nFourth Type Of 1-D Declaration & Initialization : "; | |
vector<int> ve{ 10, 20, 30 }; | |
for (auto &x : ve) | |
cout << x << " "; | |
cout<<"\nFifth Type Of 1-D Declaration & Initialization : "; | |
vector<int> vect1{ 10, 20, 30 }; | |
vector<int> vect2(vect1.begin(), vect1.end()); // copy values from one vector to another | |
for (auto &x : vect2) | |
cout << x << " "; | |
cout<<"\n\n************* 2-D Vectors ************\n"; | |
// Create a 2-dimensional vector | |
// // Initializing 2D vector "vec2" with same no. of rows and columns | |
cout<<"\nFirst Type of 2-D Declaration & Initialization : \n"; | |
vector<vector<int> > vec2{ { 1, 2, 3 }, | |
{ 4, 5, 6 }, | |
{ 7, 8, 9 } }; | |
// Displaying the 2D vector | |
for (int i = 0; i < vec2.size(); i++) | |
{ | |
for (int j = 0; j < vec2[i].size(); j++) | |
cout << vec2[i][j] << " "; | |
cout << "\n"; | |
} | |
cout<<"\nSecond Type of 2-D Declaration & Initialization : \n"; | |
// Initializing 2D vector "vecto" with different number of values in each row. | |
vector<vector<int> > vecto{ { 1, 2 }, | |
{ 4, 5, 6 }, | |
{ 7, 8, 9, 10 } }; | |
// Displaying the 2D vector | |
for (int i = 0; i < vecto.size(); i++) | |
{ | |
for (int j = 0; j < vecto[i].size(); j++) | |
cout << vecto[i][j] << " "; | |
cout << "\n"; | |
} | |
cout<<"\nThird Type of 2-D Declaration & Initialization : \n"; | |
//Initialise a 2D vector of n rows and m column, with all values as 0. | |
int n1 = 3, m = 4; | |
vector<vector<int> > v( n1 , vector<int> (m, 0)); // it contains n1 vectors of size m. | |
for (int i = 0; i < n; i++) | |
{ | |
for (int j = 0; j < m; j++) | |
{ | |
cout<< v[i][j]<< " "; | |
} | |
cout<< "\n"; | |
} | |
cout<<"\nFourth Type of 2-D Declaration & Initialization : \n"; | |
// Create a vector containing n vectors of size m. | |
vector<vector<int> > v2( n , vector<int> (m)); | |
for (int i = 0; i < n; i++) | |
{ | |
for (int j = 0; j < m; j++) | |
{ | |
v2[i][j] = j + i + 1; | |
} | |
} | |
for (int i = 0; i < n; i++) | |
{ | |
for (int j = 0; j < m; j++) | |
{ | |
cout<< v2[i][j]<< " "; | |
} | |
cout<< "\n"; | |
} | |
cout<<"\n\n************* PAIR ************\n"; | |
/* | |
Syntax : | |
pair (data_type1, data_type2) Pair_name; | |
*/ | |
cout<<"\nFirst Type of Pair Declaration & Initialization : \n"; | |
pair <int, char> PAIR1 ; | |
PAIR1.first = 100; // assigning value to first part of pair | |
PAIR1.second = 'G' ; // assigning value to second part of pair | |
cout << PAIR1.first << " " << PAIR1.second << "\n" ; | |
cout<<"\nSecond Type of Pair Declaration & Initialization : \n"; | |
pair <string,double> PAIR2 ("Learn Coding For Free", 1.01); | |
cout << PAIR2.first << " "<< PAIR2.second << "\n" ; | |
cout<<"\nThird Type of Pair Declaration & Initialization : \n"; | |
pair <string, double> PAIR3 ; | |
PAIR3 = make_pair ("Intensify Your Coding Skills",1.01); // make_pair() function is used to create a pair | |
cout << PAIR3.first << " "<< PAIR3.second << "\n" ; | |
cout<<"\n\n************* SET & ITERATOR ************\n"; | |
/* | |
Set Syntax : | |
set< object_type > variable_name; | |
*/ | |
// declaring set | |
cout<<"\n ****SET with Data In Ascending Order**** \n"; | |
set<int> st; // It will store only unique data in ascending order | |
for (int i=10; i>0; i--) | |
st.insert(i*5); // insert() function is used to insert values in set | |
// declaring iterator | |
set<int>::iterator it; | |
cout << "\nThe set elements after insertion are : "; | |
for (it = st.begin(); it!=st.end(); ++it) | |
cout << *it << " "; | |
/* | |
Can also use for traversal : | |
for(auto &i : st) | |
cout<<i<<" "; | |
*/ | |
st.erase(5); // erase() function is used to remove any element from the set | |
cout<<"\nAfter Deletion The Set Contains These Elements : "; | |
for(auto &i : st) | |
cout<<i<<" "; | |
cout<<"\n\n ****SET with Data In Ascending Order**** \n"; | |
set<int,greater <int>> st2; // It will store only unique data in descending order | |
for (int i=1; i<=10; i++) | |
st2.insert(i*5); // insert() function is used to insert values in set | |
// declaring iterator | |
set<int, greater <int> >::iterator it2; | |
cout << "\nThe set elements after insertion are : "; | |
for (it2 = st2.begin(); it2!=st2.end(); ++it2) | |
cout << *it2 << " "; | |
/* | |
Can also use for traversal : | |
for(auto &i : st) | |
cout<<i<<" "; | |
*/ | |
st2.erase(5); // erase() function is used to remove any element from the set | |
cout<<"\nAfter Deletion The Set Contains These Elements : "; | |
for(auto &i : st2) | |
cout<<i<<" "; | |
cout<<"\n\n************ HAPPY CODING****************\n\n"; | |
cout<<"Send Your Queries at : intensifycoding@gmail.com \n"; | |
return 0; | |
} |
https://www.codiva.io/p/84952a2b-403d-4758-9dad-6c9b5967d828
Stay Tuned For Upcoming Posts on STL subscribe to get updates.
Happy Coding!!
Awesome post!
ReplyDeleteThank You....!!
Delete