Skip to main content

C++ STL (Containers) Tutorial For Beginners Learn STL Hacks Part -1

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.


/*

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 :

  1. To add data dynamically
  2. To iterate through the container
  3. To erase any item in the container
  4. To find an item in the container, etc.

VECTOR

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.

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:-
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.

#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;
}
view raw ankit_stl1.cpp hosted with ❤ by GitHub
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.
Happy Coding!!














Comments

Post a Comment

Your Feedback Will Help Us To Improve...

Most Popular Posts

Coding and Mathematics ( Importance Of Maths In Programming )

Everyone wants to become a good coder but only a few manage to achieve this you know why? BECAUSE everyone wants to code and no one really wants to be a good mathematician which is the basic requirement to be a coder, yet very few know this fact and try to be a  mathematician first than a coder. What exactly is coding? It is the process of solving different technical problems using a programming language. The technical problems can vary from printing a  simple "Hello World" program to solving "2 SAT Problem" using mathematics. You might today be able to solve a few problems using your technical skills but it would help you in the long run only if you're fundamentals of mathematics are also clear. By mathematics, I don't mean the whole of it but some important topics such as Discrete Math, Algebra, Number Theory, etc. Here are some concepts of mathematics that you will use mostly in solving the technical problems : Fundamentals B...

On Which Coding Platform Should I Practice?

Which is the best online platform to practice, how to improve my coding skills? This post is all about giving answers to all such questions. If you're a beginner who has got no idea what programming is then I would recommend you step by step practice any programming language on Hackerrank. Hackerrank has modules that are self-explanatory and would slowly make you understand all the terminologies which are generally used and with practice, you'll be better at it. Moreover, if you're still not able to understand anything you can always search for your answers on GeekForGeeks or HackerEarth both of them provide one of the best tutorials on any topic. If you're an intermediate who's comfortable with any programming language then you can always improve your problem-solving skills studying Data Structures and Algorithms and practicing it. You can also improve by competitive coding. The best place to start with competitive programming according to me would be ...

Symmetric and Identical Trees

In this blog, we're going to cover Symmetric Tree and Identical Tree problems. These are quite similar problems, in the Symmetric tree we are provided with a single tree, but for checking identical trees we're provided two trees. What is a Symmetric Tree? A tree is called symmetric if it contains a mirror image of itself when divided from the center(root). This means that the left portion of the tree should be symmetric to the right portion of the tree. Example of a Symmetric Tree: What are Identical Trees? Two trees are said to be identical when they have the same data and the arrangement of data is also the same in them. Example of Identical Trees: In symmetric trees, the left portion of the tree is compared to the right portion of the tree. Whereas in the case of identical trees the left portion of one tree is compared with the left portion of another tree similarly, the right portion of one tree is compared with the right portion of another tree. Implementation Symmetric Tr...