SlideShare a Scribd company logo
Pune Vidyarthi Griha’s
COLLEGE OF ENGINEERING, NASHIK – 3.
“QUEUE”
By
Prof. Anand N. Gharu
(Assistant Professor)
PVGCOE Computer Dept.
01 August 2019
.
Introduction of Queue
➢ “A queue is an ordered list in which all insertions are
done at one end, called rear and deletions at another end
called front“
➢ Queue when implemented using arrays has some
drawbacks which can be avoided by circular queue
➢ Queue is used in many applications such as as simulation,
priority queue, job queueetc
Introduction of Queue
➢ One of the most common dataprocessing structures
➢ Frequently used in most of the system software's like
operating systems, Network and Database
implementations and in many more other areas
➢ Very useful in time-sharing and distributed computer
systems where many widely distributed users share the
system simultaneously
Array representation and
implementation of queue
➢ An array representation of queue require three entities :
1. An array to hold queue element
2. A variable to hold index of the front element
3. A variable to hold index of the rear element
Array representation and
implementation of queue
Array representation and
implementation of queue
Array representation and
implementation of queue
Operation on queue
implemented using array
Operation on queue
implemented using array
Operation on queue
implemented using array
Operation on queue
implemented using array
Operation on queue
implemented using array
Queue as an ADT
➢ Create : Create creates an empty queue, Q
➢ Add (i,Q) : Add adds the element i to the rear end of queue,
Q and returns the newqueue
➢ Delete (Q) : Delete takes out an element i from the
➢ front end of queue and returns the resulting queue
➢ Front(Q) : Front returns the element i which is at the front
position of queue
➢ Is_Empty_Q(Q) : Is_Empty_Q returns true if queue is
➢ empty otherwise returns false
Queue as an ADT
Queue as an ADT
Queue as an ADT
STACK VS QUEUE
Queue Example
Queue Example
Queue Example
Queue Example
Operation on queue implemented using
Linked list
Operation on queue implemented using
Linked list
Operation on queue implemented using
Linked list
Operation on queue implemented using
Linked list
Operation on queue implemented using
Linked list
Operation on queue implemented using
Linked list
Circular Queue
6-29
Second Approach: Queue as a
Circular Array
• If we don't fix one end of the queue at
index 0, we won't have to shift elements
• Circular array is an array that conceptually
loops around on itself
o The last index is thought to “precede” index 0
o In an array whose last index is n, the location “before” index 0 is index n;
the location “after” index n is index 0
• Need to keep track of where the front as
well as the rear of the queue are at any
given time
6-30
Conceptual Example of a Circular Queue
1
0
12
11
10
1
0
12
11
10
1
0
12
11
10
After 7 enqueues
front
rear
After 5
dequeues
front
rear
After 8 more enqueues
front
rear
6-31
Implementation of a
Queue
rear
front
5
queue
count
8
3
0
1
2 3 4
5
6
7
8
9
10
n-1
n-2
n-3
. ..
cq
6-32
A Queue Straddling the
End of a Circular Array
rear
front
4
queue
count
2
98
0
1
2 3 4
5
6
7
8
9
10
99
98
97
. ..
cq
6-33
Circular Queue Drawn
Linearly
rear
front
4
queue
count
2
98
0 4321 96 97 98 99
…
Queue from previous slide
cq
6-34
Circular Array
Implementation
• When an element is enqueued, the value of rear is
incremented
• But it must take into account the need to loop back
to index 0:
rear = (rear+1) % queue.length;
• Can this array implementation also reach capacity?
6-35
Example: array of length 4
What happens?
rear
front
3
queue
count
1
2
0 321
rear
front
4
queue
count
2
2
0 321
Suppose we try to add one
more item to a queue
implemented by an array of
length 4
cq
cq
The queue is now full. How
can you tell?
6-36
Need to expand
capacity…
rear
front
4
queue
count
2
2
0 321
rear
front
4
queue
count
2
2
0 321 4 765
We can’t just double the
size of the array and
copy values to the same
positions as before:
circular properties of the
queue will be lost
These locations
should be in use
cq
cq
6-37
rear
front
4
queue
count
6
2
0 321 4 765
We could build the new array, and copy the queue elements into
contiguous locations beginning at location front:
cq
6-38
rear
front
4
queue
count
4
0
0 321 4 765
Better: copy the queue elements in order to the beginning of the
new array
cq
6-39
rear
front
5
queue
count
5
0
0 321 4 765
New element is added at rear = (rear+1) % queue.length
See expandCapacity() in CircularArrayQueue.java
cq
Circular Queue
Circular Queue
Circular Queue
Circular Queue
Circular Queue
DeQueue
DeQueue
DeQueue as an ADT
Implementation of DeQueue using linked list
C function for deque using circular array
C function for deque using circular array
Priority Queue
Priority Queue as an ADT
Priority Queue as an ADT
Multiple Queue using array
Application of Queue
Ad

More Related Content

What's hot (20)

Complexity of algorithms
Complexity of algorithmsComplexity of algorithms
Complexity of algorithms
Jasur Ahmadov
 
Deletion operation in array(ds)
Deletion operation in array(ds)Deletion operation in array(ds)
Deletion operation in array(ds)
chauhankapil
 
Array stack-queue1
Array stack-queue1Array stack-queue1
Array stack-queue1
Rajendran
 
Ch06 Stack
Ch06  StackCh06  Stack
Ch06 Stack
leminhvuong
 
IRJET- Comparison of Stack and Queue Data Structures
IRJET- Comparison of Stack and Queue Data StructuresIRJET- Comparison of Stack and Queue Data Structures
IRJET- Comparison of Stack and Queue Data Structures
IRJET Journal
 
Quick sort
Quick sortQuick sort
Quick sort
Abdelrahman Saleh
 
Functions 2 inverse , composite
Functions 2 inverse , compositeFunctions 2 inverse , composite
Functions 2 inverse , composite
estelav
 
Linear search
Linear searchLinear search
Linear search
Abdelrahman Saleh
 
Quick sort
Quick sortQuick sort
Quick sort
amar kakde
 
Quick and radix sort
Quick and radix sortQuick and radix sort
Quick and radix sort
Aaron Joaquin
 
4 chapter3 list_stackqueuepart1
4 chapter3 list_stackqueuepart14 chapter3 list_stackqueuepart1
4 chapter3 list_stackqueuepart1
SSE_AndyLi
 
Java 8 Concurrency Updates
Java 8 Concurrency UpdatesJava 8 Concurrency Updates
Java 8 Concurrency Updates
Damian Łukasik
 
Linear timesorting
Linear timesortingLinear timesorting
Linear timesorting
International Islamic University
 
Deadlock detection
Deadlock detectionDeadlock detection
Deadlock detection
A. S. M. Shafi
 
Quiz
QuizQuiz
Quiz
Qazi Ejaz
 
Row Reducing
Row ReducingRow Reducing
Row Reducing
nicholsm
 
Quick Sort , Merge Sort , Heap Sort
Quick Sort , Merge Sort ,  Heap SortQuick Sort , Merge Sort ,  Heap Sort
Quick Sort , Merge Sort , Heap Sort
Mohammed Hussein
 
Lecture 10 ME 176 Reduction Of Multiple Su
Lecture 10 ME 176 Reduction Of Multiple SuLecture 10 ME 176 Reduction Of Multiple Su
Lecture 10 ME 176 Reduction Of Multiple Su
Leonides De Ocampo
 
Comparing two electric motors tmid
Comparing two electric motors   tmidComparing two electric motors   tmid
Comparing two electric motors tmid
Teresa Middleton
 
Stacks
StacksStacks
Stacks
amitphadikar2012
 
Complexity of algorithms
Complexity of algorithmsComplexity of algorithms
Complexity of algorithms
Jasur Ahmadov
 
Deletion operation in array(ds)
Deletion operation in array(ds)Deletion operation in array(ds)
Deletion operation in array(ds)
chauhankapil
 
Array stack-queue1
Array stack-queue1Array stack-queue1
Array stack-queue1
Rajendran
 
IRJET- Comparison of Stack and Queue Data Structures
IRJET- Comparison of Stack and Queue Data StructuresIRJET- Comparison of Stack and Queue Data Structures
IRJET- Comparison of Stack and Queue Data Structures
IRJET Journal
 
Functions 2 inverse , composite
Functions 2 inverse , compositeFunctions 2 inverse , composite
Functions 2 inverse , composite
estelav
 
Quick and radix sort
Quick and radix sortQuick and radix sort
Quick and radix sort
Aaron Joaquin
 
4 chapter3 list_stackqueuepart1
4 chapter3 list_stackqueuepart14 chapter3 list_stackqueuepart1
4 chapter3 list_stackqueuepart1
SSE_AndyLi
 
Java 8 Concurrency Updates
Java 8 Concurrency UpdatesJava 8 Concurrency Updates
Java 8 Concurrency Updates
Damian Łukasik
 
Row Reducing
Row ReducingRow Reducing
Row Reducing
nicholsm
 
Quick Sort , Merge Sort , Heap Sort
Quick Sort , Merge Sort ,  Heap SortQuick Sort , Merge Sort ,  Heap Sort
Quick Sort , Merge Sort , Heap Sort
Mohammed Hussein
 
Lecture 10 ME 176 Reduction Of Multiple Su
Lecture 10 ME 176 Reduction Of Multiple SuLecture 10 ME 176 Reduction Of Multiple Su
Lecture 10 ME 176 Reduction Of Multiple Su
Leonides De Ocampo
 
Comparing two electric motors tmid
Comparing two electric motors   tmidComparing two electric motors   tmid
Comparing two electric motors tmid
Teresa Middleton
 

Similar to Unit 5 dsa QUEUE (20)

Unit 4 queue
Unit   4 queueUnit   4 queue
Unit 4 queue
Dabbal Singh Mahara
 
stacks and queues for public
stacks and queues for publicstacks and queues for public
stacks and queues for public
iqbalphy1
 
queuesArrays.ppt bbbbbbbbbbbbbbbbbbbbbbbbbb
queuesArrays.ppt bbbbbbbbbbbbbbbbbbbbbbbbbbqueuesArrays.ppt bbbbbbbbbbbbbbbbbbbbbbbbbb
queuesArrays.ppt bbbbbbbbbbbbbbbbbbbbbbbbbb
RAtna29
 
The presention is about the queue data structure
The presention is about the queue data structureThe presention is about the queue data structure
The presention is about the queue data structure
gaurav77712
 
DS ppt1.pptx.c programing. Engineering. Data structure
DS ppt1.pptx.c programing. Engineering. Data structureDS ppt1.pptx.c programing. Engineering. Data structure
DS ppt1.pptx.c programing. Engineering. Data structure
dibyajyotijena05
 
DS10-QUEUE0000000000000000000000000000000000000.pptx
DS10-QUEUE0000000000000000000000000000000000000.pptxDS10-QUEUE0000000000000000000000000000000000000.pptx
DS10-QUEUE0000000000000000000000000000000000000.pptx
ProfVMGawde
 
Data Structures_Linear Data Structures Queue.pptx
Data Structures_Linear Data Structures Queue.pptxData Structures_Linear Data Structures Queue.pptx
Data Structures_Linear Data Structures Queue.pptx
RushaliDeshmukh2
 
Unit ii linear data structures
Unit ii linear data structures Unit ii linear data structures
Unit ii linear data structures
LavanyaJ28
 
Data Structures - Lecture 2 - Unit 2.pptx
Data Structures - Lecture 2 - Unit 2.pptxData Structures - Lecture 2 - Unit 2.pptx
Data Structures - Lecture 2 - Unit 2.pptx
DanielNesaKumarC
 
10 -queues using array_07485555555510.ppt
10 -queues using array_07485555555510.ppt10 -queues using array_07485555555510.ppt
10 -queues using array_07485555555510.ppt
nailapp2023
 
RPT_02_B_Queue presentation for FE students
RPT_02_B_Queue presentation for FE studentsRPT_02_B_Queue presentation for FE students
RPT_02_B_Queue presentation for FE students
AshishFamt
 
Data Structure Lecture 4
Data Structure Lecture 4Data Structure Lecture 4
Data Structure Lecture 4
Teksify
 
Queue
QueueQueue
Queue
Nabeel Ahsen
 
QUEUE in data-structure (classification, working procedure, Applications)
QUEUE in data-structure (classification, working procedure, Applications)QUEUE in data-structure (classification, working procedure, Applications)
QUEUE in data-structure (classification, working procedure, Applications)
Mehedi Hasan
 
05-stack_queue.ppt
05-stack_queue.ppt05-stack_queue.ppt
05-stack_queue.ppt
Sarojkumari55
 
Queues
QueuesQueues
Queues
Lovely Professional University
 
queue.pptx
queue.pptxqueue.pptx
queue.pptx
Dr.Shweta
 
Fundamentals of Data Structure and Queues
Fundamentals of Data Structure and QueuesFundamentals of Data Structure and Queues
Fundamentals of Data Structure and Queues
Bogiri Nagaraju
 
Data structure.ppt
Data structure.pptData structure.ppt
Data structure.ppt
SajalFayyaz
 
intr_qyyuujjjjjjjkkkkkkkkkkkkkjkueue.ppt
intr_qyyuujjjjjjjkkkkkkkkkkkkkjkueue.pptintr_qyyuujjjjjjjkkkkkkkkkkkkkjkueue.ppt
intr_qyyuujjjjjjjkkkkkkkkkkkkkjkueue.ppt
MaximusAranha
 
stacks and queues for public
stacks and queues for publicstacks and queues for public
stacks and queues for public
iqbalphy1
 
queuesArrays.ppt bbbbbbbbbbbbbbbbbbbbbbbbbb
queuesArrays.ppt bbbbbbbbbbbbbbbbbbbbbbbbbbqueuesArrays.ppt bbbbbbbbbbbbbbbbbbbbbbbbbb
queuesArrays.ppt bbbbbbbbbbbbbbbbbbbbbbbbbb
RAtna29
 
The presention is about the queue data structure
The presention is about the queue data structureThe presention is about the queue data structure
The presention is about the queue data structure
gaurav77712
 
DS ppt1.pptx.c programing. Engineering. Data structure
DS ppt1.pptx.c programing. Engineering. Data structureDS ppt1.pptx.c programing. Engineering. Data structure
DS ppt1.pptx.c programing. Engineering. Data structure
dibyajyotijena05
 
DS10-QUEUE0000000000000000000000000000000000000.pptx
DS10-QUEUE0000000000000000000000000000000000000.pptxDS10-QUEUE0000000000000000000000000000000000000.pptx
DS10-QUEUE0000000000000000000000000000000000000.pptx
ProfVMGawde
 
Data Structures_Linear Data Structures Queue.pptx
Data Structures_Linear Data Structures Queue.pptxData Structures_Linear Data Structures Queue.pptx
Data Structures_Linear Data Structures Queue.pptx
RushaliDeshmukh2
 
Unit ii linear data structures
Unit ii linear data structures Unit ii linear data structures
Unit ii linear data structures
LavanyaJ28
 
Data Structures - Lecture 2 - Unit 2.pptx
Data Structures - Lecture 2 - Unit 2.pptxData Structures - Lecture 2 - Unit 2.pptx
Data Structures - Lecture 2 - Unit 2.pptx
DanielNesaKumarC
 
10 -queues using array_07485555555510.ppt
10 -queues using array_07485555555510.ppt10 -queues using array_07485555555510.ppt
10 -queues using array_07485555555510.ppt
nailapp2023
 
RPT_02_B_Queue presentation for FE students
RPT_02_B_Queue presentation for FE studentsRPT_02_B_Queue presentation for FE students
RPT_02_B_Queue presentation for FE students
AshishFamt
 
Data Structure Lecture 4
Data Structure Lecture 4Data Structure Lecture 4
Data Structure Lecture 4
Teksify
 
QUEUE in data-structure (classification, working procedure, Applications)
QUEUE in data-structure (classification, working procedure, Applications)QUEUE in data-structure (classification, working procedure, Applications)
QUEUE in data-structure (classification, working procedure, Applications)
Mehedi Hasan
 
Fundamentals of Data Structure and Queues
Fundamentals of Data Structure and QueuesFundamentals of Data Structure and Queues
Fundamentals of Data Structure and Queues
Bogiri Nagaraju
 
Data structure.ppt
Data structure.pptData structure.ppt
Data structure.ppt
SajalFayyaz
 
intr_qyyuujjjjjjjkkkkkkkkkkkkkjkueue.ppt
intr_qyyuujjjjjjjkkkkkkkkkkkkkjkueue.pptintr_qyyuujjjjjjjkkkkkkkkkkkkkjkueue.ppt
intr_qyyuujjjjjjjkkkkkkkkkkkkkjkueue.ppt
MaximusAranha
 
Ad

More from PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK (20)

BASICS OF COMPUTER
BASICS OF COMPUTERBASICS OF COMPUTER
BASICS OF COMPUTER
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Wt unit 6 ppts web services
Wt unit 6 ppts web servicesWt unit 6 ppts web services
Wt unit 6 ppts web services
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Wt unit 5 client & server side framework
Wt unit 5 client & server side frameworkWt unit 5 client & server side framework
Wt unit 5 client & server side framework
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Wt unit 4 server side technology-2
Wt unit 4 server side technology-2Wt unit 4 server side technology-2
Wt unit 4 server side technology-2
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Wt unit 3 server side technology
Wt unit 3 server side technologyWt unit 3 server side technology
Wt unit 3 server side technology
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Wt unit 2 ppts client sied technology
Wt unit 2 ppts client sied technologyWt unit 2 ppts client sied technology
Wt unit 2 ppts client sied technology
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
web development process WT
web development process WTweb development process WT
web development process WT
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Unit 6 dsa SEARCHING AND SORTING
Unit 6 dsa SEARCHING AND SORTINGUnit 6 dsa SEARCHING AND SORTING
Unit 6 dsa SEARCHING AND SORTING
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Unit 3 dsa LINKED LIST
Unit 3 dsa LINKED LISTUnit 3 dsa LINKED LIST
Unit 3 dsa LINKED LIST
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Unit 2 dsa LINEAR DATA STRUCTURE
Unit 2 dsa LINEAR DATA STRUCTUREUnit 2 dsa LINEAR DATA STRUCTURE
Unit 2 dsa LINEAR DATA STRUCTURE
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Unit 1 dsa
Unit 1 dsaUnit 1 dsa
Unit 1 dsa
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Wt unit 2 ppts client side technology
Wt unit 2 ppts client side technologyWt unit 2 ppts client side technology
Wt unit 2 ppts client side technology
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Wt unit 1 ppts web development process
Wt unit 1 ppts web development processWt unit 1 ppts web development process
Wt unit 1 ppts web development process
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Wt unit 3 server side technology
Wt unit 3 server side technologyWt unit 3 server side technology
Wt unit 3 server side technology
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
LANGUAGE TRANSLATOR
LANGUAGE TRANSLATORLANGUAGE TRANSLATOR
LANGUAGE TRANSLATOR
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
OPERATING SYSTEM
OPERATING SYSTEMOPERATING SYSTEM
OPERATING SYSTEM
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
LEX & YACC TOOL
LEX & YACC TOOLLEX & YACC TOOL
LEX & YACC TOOL
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
PL-3 LAB MANUAL
PL-3 LAB MANUALPL-3 LAB MANUAL
PL-3 LAB MANUAL
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
COMPUTER LABORATORY-4 LAB MANUAL BE COMPUTER ENGINEERING
COMPUTER LABORATORY-4 LAB MANUAL BE COMPUTER ENGINEERINGCOMPUTER LABORATORY-4 LAB MANUAL BE COMPUTER ENGINEERING
COMPUTER LABORATORY-4 LAB MANUAL BE COMPUTER ENGINEERING
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Deld model answer nov 2017
Deld model answer nov 2017Deld model answer nov 2017
Deld model answer nov 2017
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Ad

Recently uploaded (20)

ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdfATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ssuserda39791
 
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
ijflsjournal087
 
Autodesk Fusion 2025 Tutorial: User Interface
Autodesk Fusion 2025 Tutorial: User InterfaceAutodesk Fusion 2025 Tutorial: User Interface
Autodesk Fusion 2025 Tutorial: User Interface
Atif Razi
 
Automatic Quality Assessment for Speech and Beyond
Automatic Quality Assessment for Speech and BeyondAutomatic Quality Assessment for Speech and Beyond
Automatic Quality Assessment for Speech and Beyond
NU_I_TODALAB
 
Construction Materials (Paints) in Civil Engineering
Construction Materials (Paints) in Civil EngineeringConstruction Materials (Paints) in Civil Engineering
Construction Materials (Paints) in Civil Engineering
Lavish Kashyap
 
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
ajayrm685
 
Generative AI & Large Language Models Agents
Generative AI & Large Language Models AgentsGenerative AI & Large Language Models Agents
Generative AI & Large Language Models Agents
aasgharbee22seecs
 
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdfLittle Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
gori42199
 
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
PawachMetharattanara
 
seninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjj
seninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjjseninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjj
seninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjj
AjijahamadKhaji
 
How to Build a Desktop Weather Station Using ESP32 and E-ink Display
How to Build a Desktop Weather Station Using ESP32 and E-ink DisplayHow to Build a Desktop Weather Station Using ESP32 and E-ink Display
How to Build a Desktop Weather Station Using ESP32 and E-ink Display
CircuitDigest
 
Mode-Wise Corridor Level Travel-Time Estimation Using Machine Learning Models
Mode-Wise Corridor Level Travel-Time Estimation Using Machine Learning ModelsMode-Wise Corridor Level Travel-Time Estimation Using Machine Learning Models
Mode-Wise Corridor Level Travel-Time Estimation Using Machine Learning Models
Journal of Soft Computing in Civil Engineering
 
JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...
JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...
JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...
Reflections on Morality, Philosophy, and History
 
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdfML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
rameshwarchintamani
 
Design of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdfDesign of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdf
Kamel Farid
 
Modeling the Influence of Environmental Factors on Concrete Evaporation Rate
Modeling the Influence of Environmental Factors on Concrete Evaporation RateModeling the Influence of Environmental Factors on Concrete Evaporation Rate
Modeling the Influence of Environmental Factors on Concrete Evaporation Rate
Journal of Soft Computing in Civil Engineering
 
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Journal of Soft Computing in Civil Engineering
 
Modelling of Concrete Compressive Strength Admixed with GGBFS Using Gene Expr...
Modelling of Concrete Compressive Strength Admixed with GGBFS Using Gene Expr...Modelling of Concrete Compressive Strength Admixed with GGBFS Using Gene Expr...
Modelling of Concrete Compressive Strength Admixed with GGBFS Using Gene Expr...
Journal of Soft Computing in Civil Engineering
 
Machine Learning basics POWERPOINT PRESENETATION
Machine Learning basics POWERPOINT PRESENETATIONMachine Learning basics POWERPOINT PRESENETATION
Machine Learning basics POWERPOINT PRESENETATION
DarrinBright1
 
Applications of Centroid in Structural Engineering
Applications of Centroid in Structural EngineeringApplications of Centroid in Structural Engineering
Applications of Centroid in Structural Engineering
suvrojyotihalder2006
 
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdfATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ssuserda39791
 
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
ijflsjournal087
 
Autodesk Fusion 2025 Tutorial: User Interface
Autodesk Fusion 2025 Tutorial: User InterfaceAutodesk Fusion 2025 Tutorial: User Interface
Autodesk Fusion 2025 Tutorial: User Interface
Atif Razi
 
Automatic Quality Assessment for Speech and Beyond
Automatic Quality Assessment for Speech and BeyondAutomatic Quality Assessment for Speech and Beyond
Automatic Quality Assessment for Speech and Beyond
NU_I_TODALAB
 
Construction Materials (Paints) in Civil Engineering
Construction Materials (Paints) in Civil EngineeringConstruction Materials (Paints) in Civil Engineering
Construction Materials (Paints) in Civil Engineering
Lavish Kashyap
 
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
ajayrm685
 
Generative AI & Large Language Models Agents
Generative AI & Large Language Models AgentsGenerative AI & Large Language Models Agents
Generative AI & Large Language Models Agents
aasgharbee22seecs
 
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdfLittle Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
gori42199
 
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
PawachMetharattanara
 
seninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjj
seninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjjseninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjj
seninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjj
AjijahamadKhaji
 
How to Build a Desktop Weather Station Using ESP32 and E-ink Display
How to Build a Desktop Weather Station Using ESP32 and E-ink DisplayHow to Build a Desktop Weather Station Using ESP32 and E-ink Display
How to Build a Desktop Weather Station Using ESP32 and E-ink Display
CircuitDigest
 
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdfML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
rameshwarchintamani
 
Design of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdfDesign of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdf
Kamel Farid
 
Machine Learning basics POWERPOINT PRESENETATION
Machine Learning basics POWERPOINT PRESENETATIONMachine Learning basics POWERPOINT PRESENETATION
Machine Learning basics POWERPOINT PRESENETATION
DarrinBright1
 
Applications of Centroid in Structural Engineering
Applications of Centroid in Structural EngineeringApplications of Centroid in Structural Engineering
Applications of Centroid in Structural Engineering
suvrojyotihalder2006
 

Unit 5 dsa QUEUE

  翻译: