For this question, people standing in a queue are represented in the form of a struct. Hence, you need to create a struct, Person, which contains the following data (in Person.cpp file): • string name name of the person. Person *next - pointer to the next person in the queue. For the last person in the queue, next will be NULL.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter18: Stacks And Queues
Section: Chapter Questions
Problem 16PE: The implementation of a queue in an array, as given in this chapter, uses the variable count to...
icon
Related questions
Question

Please solve the below question using c++ asap asap and use basic logic

For this question, people standing in a queue are represented in the form of a struct.
Hence, you need to create a struct, Person, which contains the following data (in
Person.cpp file):
• string name name of the person.
Person *next - pointer to the next person in the queue.
For the last person in the queue, next will be NULL.
Transcribed Image Text:For this question, people standing in a queue are represented in the form of a struct. Hence, you need to create a struct, Person, which contains the following data (in Person.cpp file): • string name name of the person. Person *next - pointer to the next person in the queue. For the last person in the queue, next will be NULL.
Now for the same, you need to implement the following functions:
int count(Person *p)
This function should return the number of persons standing in
the queue after a given person p(not including it).
• void insert(Person *p, string name)
This function adds a new person in the queue with given name.
You can assume that argument p given for this function always
refers to the last person in the queue.
You may refer to this link to know about struct constructor:
c struct tonstructo
http://www.c-ijump.com/bcc/c123d/Lectures/wk08 struct/W08 0050
htm
Transcribed Image Text:Now for the same, you need to implement the following functions: int count(Person *p) This function should return the number of persons standing in the queue after a given person p(not including it). • void insert(Person *p, string name) This function adds a new person in the queue with given name. You can assume that argument p given for this function always refers to the last person in the queue. You may refer to this link to know about struct constructor: c struct tonstructo http://www.c-ijump.com/bcc/c123d/Lectures/wk08 struct/W08 0050 htm
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Fundamentals of Boolean Algebra and Digital Logics
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning