Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/praabindhp/list_adt-linked_list
C Program For List ADT Linked List
https://github.com/praabindhp/list_adt-linked_list
adt c-programming-language code linked-list list
Last synced: about 1 month ago
JSON representation
C Program For List ADT Linked List
- Host: GitHub
- URL: https://github.com/praabindhp/list_adt-linked_list
- Owner: praabindhp
- Created: 2021-02-27T12:31:11.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-28T14:03:04.000Z (almost 4 years ago)
- Last Synced: 2024-10-19T21:27:07.488Z (2 months ago)
- Topics: adt, c-programming-language, code, linked-list, list
- Language: C
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# List_ADT-Linked_List
C Program For List ADT Linked ListC is a general-purpose, procedural computer programming language supporting structured programming, lexical variable scope, and recursion, with a static type system. By design, C provides constructs that map efficiently to typical machine instructions.
This Is A C-Program To Illustrate The List ADT Using Linked List
The Operations/Error Illustrated :
1. Create
2. Insert
3. Delete
4. Display
5. MakeEmpty
6. Find
7. IsEmpty
8. IsFull
9. Deletelist
10. Exit
The User Will Be Prompted To :
1. Enter Your Option
2. List is Created successfully
3. Enter the Element to insert
4. Enter the Element to insert
5. Where u want to insert?
6. Elements present in the list
7. Which element is to find
8. Element is at position
9. List Empty ?
9.1. List is Not Empty
9.2. List is Empty10. List Full ?
10.1. List is Not Full
10.2. List is FullThe GCC File Also Have Been Pushed.