🔴 Advanced  ·  Lesson 55

list and deque in STL

list and deque in STL

What is list and deque in STL?

list and deque in STL
list is a doubly linked list and deque is a double-ended queue. They are useful when frequent insertion/deletion is required.
Level
🔴 STL, Modern C++ and Projects
Example File
list-deque.cpp
Main Focus
Concept + syntax + practical C++ program

Why should you learn this?

  • It helps you write correct and readable C++ programs.
  • It is used repeatedly in school practicals, projects and competitive programming.
  • It builds the base for advanced topics such as OOP, STL and data structures.

Important Terms

TermMeaning / Use
listlist and deque in STL programming में List use होता है।
dequelist and deque in STL programming में Deque use होता है।
push_frontlist and deque in STL programming में Push_front use होता है।
push_backlist and deque in STL programming में Push_back use होता है।
iteratorlist and deque in STL programming में Iterator use होता है।

Syntax / Pattern

C++
list<int> l; deque<int> d;

Example Program

main.cpp
#include <iostream>
#include <deque>
using namespace std;
int main(){
    deque<int> d;
    d.push_front(10);
    d.push_back(20);
    cout << d.front() << " " << d.back();
}

Expected Output

10 20

Program Explanation

  • deque allows insertion at both front and back.
  • front() and back() read end elements.
Exam Tip: In C++ practical answers, write the logic first, then the program, then expected output. For theory, always include one suitable example.

Where will you use it?

  • queue systems
  • browser history
  • sliding window

Common Mistakes

  • Using list when indexing is needed often.
  • Assuming list has fast random access.

Practice Tasks

  1. Compare vector and list.
  2. Use deque for ticket queue.

Summary

list and deque in STL एक ज़रूरी C++ topic है। परिभाषा सीखें, syntax समझें, example program चलाएं और फिर practice tasks हल करके concept मज़बूत करें।

list and deque in STL क्या है?

list and deque in STL
list is a doubly linked list and deque is a double-ended queue. They are useful when frequent insertion/deletion is required.
Level
🔴 STL, Modern C++ and Projects
Example File
list-deque.cpp
मुख्य फोकस
Concept + syntax + practical C++ program

इसे क्यों सीखें?

  • यह आपको सही और पढ़ने-योग्य C++ programs लिखने में मदद करता है।
  • यह school practicals, projects और competitive programming में बार-बार use होता है।
  • यह OOP, STL और data structures जैसे advanced topics की नींव बनाता है।

ज़रूरी Terms

Termअर्थ / उपयोग
listList list and deque in STL programming में use होता है।
dequeDeque list and deque in STL programming में use होता है।
push_frontPush_front list and deque in STL programming में use होता है।
push_backPush_back list and deque in STL programming में use होता है।
iteratorIterator list and deque in STL programming में use होता है।

Syntax / Pattern

C++
list<int> l; deque<int> d;

Example Program

main.cpp
#include <iostream>
#include <deque>
using namespace std;
int main(){
    deque<int> d;
    d.push_front(10);
    d.push_back(20);
    cout << d.front() << " " << d.back();
}

Expected Output

10 20

Program Explanation

  • deque allows insertion at both front and back.
  • front() and back() read end elements.
Exam Tip: In C++ practical answers, write the logic first, then the program, then expected output. For theory, always include one suitable example.

Where will you use it?

  • queue systems
  • browser history
  • sliding window

आम गलतियाँ (Common Mistakes)

  • Using list when indexing is needed often.
  • Assuming list has fast random access.

अभ्यास (Practice Tasks)

  1. Compare vector and list.
  2. Use deque for ticket queue.

सारांश

list and deque in STL एक ज़रूरी C++ topic है। परिभाषा सीखें, syntax समझें, example program चलाएं और फिर practice tasks हल करके concept मज़बूत करें।

← Back to C++ Tutorial
🔗

Share this topic with a friend

यह topic किसी दोस्त को भेजें

Found it useful? Send it to a classmate learning the same thing.

अच्छा लगा? जो दोस्त यही सीख रहा है, उसे भेज दीजिए।

\n

💻 Live Code Editor

Is page ke program yahan ready hain — chalाएं, badlें aur seekhें. Bina kuch install kiye.
Powered by OneCompiler. Editor mein code apne aap aa jata hai — Run dabaakर output dekhें. Agar load na ho to naye tab mein kholें.