Computer Science Illuminated
7th Edition
ISBN: 9781284155617
Author: Nell Dale, John Lewis
Publisher: Jones & Bartlett Learning
expand_more
expand_more
format_list_bulleted
Question
Chapter 14, Problem 2TQ
Program Plan Intro
Queue:
- This is the abstract data type in which access of data is made at both the ends.
- The data is inserted at one end or removed at the other end.
- So, the first item inserted at one end can be retrieved first at the other end. This
mechanism is referred to as first-in-first-out (FIFO). - Insertion and deletion are the common operations of a queue.
- Inserting an item into the queue is called “Enqueue”.
- Removing an item from the queue is called “Dequeue”.
- Diagrammatic representation of enqueue operation:
In the above diagram,
- After inserting the item “1” to the empty queue, the “front” and the “rear” pointers point to this first item.
- After inserting the item “9”, the “rear” pointer moves from the item “1” to the item “9”.
- After inserting the item “3”, the “rear” pointer moves from the item “9” to the item “3” and during insertion, the “front” pointer points only to the first item.
Priority queue:
- If the items in the queue are assigned with a priority, then it is called priority queue.
- When inserting an item into the priority queue, the item is added with the priority.
- When removing an item from the priority queue, the item with higher priority is first removed. Then, based on the priority, the other items are removed.
- The maximum number or the minimum number can be deleted by using deletemaximum() or deleteminimum() function.
- Deletemaximum() is a function which deletes the number which is having the highest priority.
- Deleteminimum() is a function which deletes the number which is having the lowest priority.
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionChapter 14 Solutions
Computer Science Illuminated
Ch. 14 - Prob. 1ECh. 14 - Prob. 2ECh. 14 - Prob. 3ECh. 14 - Prob. 4ECh. 14 - Prob. 5ECh. 14 - Prob. 6ECh. 14 - Prob. 7ECh. 14 - Prob. 8ECh. 14 - Prob. 9ECh. 14 - Prob. 10E
Ch. 14 - Prob. 11ECh. 14 - Prob. 12ECh. 14 - Prob. 13ECh. 14 - Prob. 14ECh. 14 - Prob. 15ECh. 14 - Prob. 16ECh. 14 - Prob. 17ECh. 14 - Prob. 18ECh. 14 - Prob. 19ECh. 14 - Prob. 20ECh. 14 - Prob. 21ECh. 14 - Prob. 22ECh. 14 - Prob. 23ECh. 14 - Prob. 24ECh. 14 - Prob. 25ECh. 14 - Prob. 26ECh. 14 - Prob. 27ECh. 14 - Prob. 28ECh. 14 - Prob. 29ECh. 14 - Prob. 30ECh. 14 - Prob. 31ECh. 14 - Prob. 32ECh. 14 - Prob. 33ECh. 14 - Prob. 34ECh. 14 - Prob. 35ECh. 14 - Prob. 36ECh. 14 - Prob. 37ECh. 14 - Prob. 38ECh. 14 - Prob. 39ECh. 14 - Prob. 40ECh. 14 - Prob. 41ECh. 14 - Prob. 42ECh. 14 - Prob. 43ECh. 14 - Prob. 44ECh. 14 - Prob. 45ECh. 14 - Prob. 46ECh. 14 - Prob. 47ECh. 14 - Prob. 48ECh. 14 - Prob. 49ECh. 14 - Prob. 50ECh. 14 - Prob. 51ECh. 14 - Prob. 52ECh. 14 - Prob. 1TQCh. 14 - Prob. 2TQCh. 14 - Prob. 3TQCh. 14 - Prob. 4TQCh. 14 - Prob. 5TQCh. 14 - Prob. 6TQCh. 14 - Prob. 7TQCh. 14 - Prob. 8TQ
Knowledge Booster
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education