Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/129ashish/ds_c_list
in this repository here I have discussed about the different type of operations can be performed on Linked List.
https://github.com/129ashish/ds_c_list
c-language data-structures linked-llist
Last synced: 28 days ago
JSON representation
in this repository here I have discussed about the different type of operations can be performed on Linked List.
- Host: GitHub
- URL: https://github.com/129ashish/ds_c_list
- Owner: 129Ashish
- Created: 2024-08-28T03:50:44.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-17T12:39:41.000Z (3 months ago)
- Last Synced: 2024-12-08T12:09:02.518Z (28 days ago)
- Topics: c-language, data-structures, linked-llist
- Language: C
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DS_C_LIST
# C_List Data Structure
A Linked List Data Structure is a commonly used DS type in which it consists of two fiels one is data field and another is the adddress fiels in which the address of the corresponding next node wll be present and for the last lode of the Linked List it points to the NULL pointer(which means the end of the Linked List)
In this repo there is a cokmplete set of instructions/operationd which we can use on the Lists
->1.ADD ITEM
->2.DELETE ITEM
->3.REVERSE ITEM
->4.SHOW ITEMS
->5.REVERSE PRINT
->6.INSERT ITEMS
->7.EXIT# These are the complete six types of operations which can be perform over the Linked Lists.