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. Person should also have a constructor, which initializes the struct with name as pname, and next pointer as NULL. Person(string pname)

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 asap using c++ basic logic and running it for a larger number of test cases.

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.
Person should also have a constructor, which initializes the struct with name as
pname, and next pointer as NULL.
Person(string pname)
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. Person should also have a constructor, which initializes the struct with name as pname, and next pointer as NULL. Person(string pname)
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 3 steps with 3 images

Blurred answer
Knowledge Booster
ADT and Class
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