You are on page 1of 1

CPE 331L

EXAM 3 - LINKED LIST, SORTING, SEARCHING


Create a singly linked list.
The singly linked list is a chain of its item. Each item contains two parts--data and pointer. The data part is to
store information and the pointer part of an item is used to point or to store the address of the next item.

Example Output:
=============================================
Linked List Operations Menu
=============================================
1. Add a new item
2. Delete an item
3. Edit Item
4. Show number of items
5. Show all items (Sorted)
6. Search
7. Exit
Enter your choice:

You might also like