Skip to content

This a Complete end to end Phone Book Management System developed in C++ . It uses the Doubly Linked Lists Data Structure to ease out Operations like Traversing , Searching etc.

Notifications You must be signed in to change notification settings

BhakeSart/Phone-Book-System-in-CPP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

Phone-Book-System-in-CPP

This Project is a Phone Book Management System which is developed in C++ using Doubly Linked Lists. It was developed as a Course Project for Data Structures and Algorithms in my 3rd Semester of College.

Primitive Operations Doubly Linked Lists can Perform

  1. Searching. -- O(n)
  2. Sorting. -- O(n*log n)
  3. Deletion. -- O(n)

5 Features of this Project.

  1. Displaying Saved Contacts.
  2. Inserting New Contact.
  3. Updating Details on Exisiting Contact.
  4. Deleting a Contact.
  5. Searching a Contact. -- Search by Number , Search by Name and Search by Email.

Functions defined in the Code.

  1. void insert();
  2. void sort();
  3. void deletecontact();
  4. void searchbyname();
  5. void searchbynumber();
  6. void searchbyemail();
  7. void accept();
  8. void display();
  9. void update();

About

This a Complete end to end Phone Book Management System developed in C++ . It uses the Doubly Linked Lists Data Structure to ease out Operations like Traversing , Searching etc.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages