Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akkupy/ds_s3
Semester 3 Data Structure Works
https://github.com/akkupy/ds_s3
algorithm data-structures data-structures-and-algorithms ktu-s3 ktu-s3-cse ktustudents
Last synced: about 1 month ago
JSON representation
Semester 3 Data Structure Works
- Host: GitHub
- URL: https://github.com/akkupy/ds_s3
- Owner: akkupy
- License: mit
- Created: 2022-03-05T07:28:22.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-06T17:29:11.000Z (almost 3 years ago)
- Last Synced: 2023-04-22T07:29:20.897Z (over 1 year ago)
- Topics: algorithm, data-structures, data-structures-and-algorithms, ktu-s3, ktu-s3-cse, ktustudents
- Language: C
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DS_S3
Semester 3 Data Structure Works..Note : Experient 1,2,3,4 were completed and certified at Lab.
### Experiment 5.
[poly_add_ll](https://github.com/akkupy/DS_S3/blob/main/Exp_5) - Representation of polynomial using linked list - Polynomial addition
[poly_multi_ll](https://github.com/akkupy/DS_S3/blob/main/Exp_5) - Representation of polynomial using linked list - Polynomial multiplication.
### Experiment 6.
[stack_array](https://github.com/akkupy/DS_S3/blob/main/Exp_6) - Implementation of stack and multiple stack using 1D array.
### Experiment 7.
[stack_linkedlist](https://github.com/akkupy/DS_S3/blob/main/Exp_7) - Implementation of stack using linked list
### Experiment 8.
[infix_postfix](https://github.com/akkupy/DS_S3/blob/main/Exp_8) - Infix to Postfix Conversion Using Stack
### Experiment 9.
[postfix_eval](https://github.com/akkupy/DS_S3/blob/main/Exp_9) - Evaluation of postfix expression using stack.
### Experiment 10.
[queue_array](https://github.com/akkupy/DS_S3/blob/main/Exp_10) - Implementation of queue using array.
[queue_linked_list](https://github.com/akkupy/DS_S3/blob/main/Exp_10) - Implementation of queue using linked list.
### Experiment 11.
[quick_sort](https://github.com/akkupy/DS_S3/blob/main/Exp_11) - Implementation of Quick sort using recursive algorithm.
### Experiment 12.
[merge_sort](https://github.com/akkupy/DS_S3/blob/main/Exp_12) - Implementation of Merge sort using recursive algorithm.
### Experiment 13.
[quick_sort](https://github.com/akkupy/DS_S3/blob/main/Exp_13) - Implementation of Quick sort using non-recursive algorithm.
[merge_sort](https://github.com/akkupy/DS_S3/blob/main/Exp_13) - Implementation of Merge sort using non-recursive algorithm.
### Experiment 14.
[heap_sort](https://github.com/akkupy/DS_S3/blob/main/Exp_14) - Implementation of heap sort algorithm.