
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Sunidhi Bansal has Published 1085 Articles

Sunidhi Bansal
4K+ Views
In this article we will be discussing the working, syntax and examples of queue::empty() and queue::size() functions in C++ STL.What is a queue in C++ STL?Queue is a simple sequence or data structure defined in the C++ STL which does insertion and deletion of the data in FIFO(First In First ... Read More

Sunidhi Bansal
2K+ Views
In this article we will be discussing the working, syntax and examples of queue::front() and queue::back() functions in C++ STL.What is a queue in C++ STL?Queue is a simple sequence or data structure defined in the C++ STL which does insertion and deletion of the data in FIFO(First In First ... Read More

Sunidhi Bansal
895 Views
In this article we will be discussing the working, syntax and examples of queue::emplace() function in C++ STL.What is a queue in C++ STL?Queue is a simple sequence or data structure defined in the C++ STL which does insertion and deletion of the data in FIFO(First In First Out) fashion. ... Read More

Sunidhi Bansal
278 Views
In this article we will be discussing the working, syntax and examples of deque::shrink_to_fit() function in C++ STL.What is Deque?Deque is the Double Ended Queues that are the sequence containers which provides the functionality of expansion and contraction on both the ends. A queue data structure allow user to insert ... Read More

Sunidhi Bansal
2K+ Views
In this article we will be discussing the working, syntax and examples of deque::push_front() function in C++ STL.What is Deque?Deque is the Double Ended Queues that are the sequence containers which provides the functionality of expansion and contraction on both the ends. A queue data structure allow user to insert ... Read More

Sunidhi Bansal
326 Views
In this article we will be discussing the working, syntax and examples of deque::operator= and deque::operator[] in C++ STL.What is Deque?Deque is the Double Ended Queues that are the sequence containers which provides the functionality of expansion and contraction on both the ends. A queue data structure allows users to ... Read More

Sunidhi Bansal
2K+ Views
In this article we will be discussing the working, syntax and examples of deque::empty() and deque::size() functions in C++ STL.What is Deque?Deque is the Double Ended Queues that are the sequence containers which provides the functionality of expansion and contraction on both the ends. A queue data structure allow user ... Read More

Sunidhi Bansal
2K+ Views
In this article we will be discussing the working, syntax and examples of deque::begin() and deque::end() functions in C++ STL.What is Deque?Deque is the Double Ended Queues that are the sequence containers which provides the functionality of expansion and contraction on both the ends. A queue data structure allow user ... Read More

Sunidhi Bansal
203 Views
In this article we will be discussing the working, syntax and examples of deque::at() and deque::swap() functions in C++ STL.What is Deque?Deque is the Double Ended Queues that are the sequence containers which provides the functionality of expansion and contraction on both the ends. A queue data structure allow user ... Read More

Sunidhi Bansal
753 Views
In this article we will be discussing the working, syntax and examples of list::emplace_front() and list::emplace_back() function in C++ STL.What is a List in STL?List is a data structure that allows constant time insertion and deletion anywhere in sequence. Lists are implemented as doubly linked lists. Lists allow non-contiguous memory ... Read More