Write a program that maintains a personal phone book in C. The program allows to: ▪ Add and Delete entries from the phone book, ▪ Search the phone book for a specific entry by last name or by phone number, and ▪ Print out the entire entries in the phone book. The data in the phone book is maintained by storing in memory with the use of a singly linked list, with one list node per entry. Each node contains members for storing a person’s family name, first name, address, and the phone number. Use strings to store this information. The linked list must be kept in increasing alphabetical order, sorted by family name. There are no duplicate entries with the same family name allowed in the phone book. This program should be menu driven, with the user being offered a choice of the following commands described below: ▪ Insert a new entry into the phone book. The program should prompt the user for a new family name and first name, an address and a phone number. This information should be placed in a new node that has been created dynamically using the malloc function. And then the node should be inserted at the proper place within the linked list so to maintain an increasing alphabetical order by the family name. If a node with the given family name is already in the phone book, an error message should be produced, and the new node should not be inserted into the linked list. (Note: only identical family names would result in a error message and rejection of the entry.) ▪ Delete an entry from the phone book. The program should prompt the user for the family name to be deleted and then delete the node containing that family name from the linked list that stores the phone book. If no node with the given family name is found in the phone book, an error message should be printed. ▪ Search for a family name in the phone book. The program should print the family name, first name, address and phone number of the entry, with each piece of information on a separate line. If no node with the given family name is found in the phone book, an error message should be printed. ▪ Search for a phone number in the phone book. The program should print the family name, first name, address and phone number of the entry, with each piece of information on a separate line. If no node with the given phone number is found in the phone book, an error message should be printed. Print the phonebook. Print the list in alphabetical order by the family name, first name, address and phone number of each entry, with each piece of information on a separate line. An extra blank line should be printed between each phone book entry. ▪ Quit the program. When the program is given the quit command, it should delete all of the nodes in the linked list by using calls to the free function. It should then try to print the linked list. Don't use #include.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Write a program that maintains a personal phone book in C. The program allows to:
▪ Add and Delete entries from the phone book,
▪ Search the phone book for a specific entry by last name or by phone number, and
▪ Print out the entire entries in the phone book.
The data in the phone book is maintained by storing in memory with the use of a singly linked list, with
one list node per entry. Each node contains members for storing a person’s family name, first name, address,
and the phone number. Use strings to store this information. The linked list must be kept in increasing
alphabetical order, sorted by family name. There are no duplicate entries with the same family name
allowed in the phone book.

This program should be menu driven, with the user being offered a choice of the following commands
described below:
▪ Insert a new entry into the phone book.
The program should prompt the user for a new family name and first name, an address and a phone
number. This information should be placed in a new node that has been created dynamically using
the malloc function. And then the node should be inserted at the proper place within the linked list
so to maintain an increasing alphabetical order by the family name. If a node with the given family
name is already in the phone book, an error message should be produced, and the new node should
not be inserted into the linked list. (Note: only identical family names would result in a error
message and rejection of the entry.)
▪ Delete an entry from the phone book.
The program should prompt the user for the family name to be deleted and then delete the node
containing that family name from the linked list that stores the phone book. If no node with the
given family name is found in the phone book, an error message should be printed.
▪ Search for a family name in the phone book.
The program should print the family name, first name, address and phone number of the entry, with
each piece of information on a separate line. If no node with the given family name is found in the
phone book, an error message should be printed.
▪ Search for a phone number in the phone book.
The program should print the family name, first name, address and phone number of the entry, with
each piece of information on a separate line. If no node with the given phone number is found in
the phone book, an error message should be printed.

Print the phonebook.

Print the list in alphabetical order by the family name, first name, address and phone number of
each entry, with each piece of information on a separate line. An extra blank line should be printed
between each phone book entry.
▪ Quit the program.
When the program is given the quit command, it should delete all of the nodes in the linked list
by using calls to the free function. It should then try to print the linked list.
Don't use #include<conio.h>.
Personal Phone Book Maintenance Program.
Commands are I (insert), D (delete), S (search by name),
R (reverse search by phone #), P (print), Q (quit).
Command?: I
family name: James
first name: LeBron
address: 1600 Pennsylvania Avenue
phone number: 202-456-1111
Transcribed Image Text:Personal Phone Book Maintenance Program. Commands are I (insert), D (delete), S (search by name), R (reverse search by phone #), P (print), Q (quit). Command?: I family name: James first name: LeBron address: 1600 Pennsylvania Avenue phone number: 202-456-1111
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Can #include<conio.h> not be used?

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Linked List Representation
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
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education