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.
- Searching. -- O(n)
- Sorting. -- O(n*log n)
- Deletion. -- O(n)
- Displaying Saved Contacts.
- Inserting New Contact.
- Updating Details on Exisiting Contact.
- Deleting a Contact.
- Searching a Contact. -- Search by Number , Search by Name and Search by Email.
- void insert();
- void sort();
- void deletecontact();
- void searchbyname();
- void searchbynumber();
- void searchbyemail();
- void accept();
- void display();
- void update();