Semester 3 Data Structure Works..
Note : Experient 1,2,3,4 were completed and certified at Lab.
poly_add_ll - Representation of polynomial using linked list - Polynomial addition
poly_multi_ll - Representation of polynomial using linked list - Polynomial multiplication.
stack_array - Implementation of stack and multiple stack using 1D array.
stack_linkedlist - Implementation of stack using linked list
infix_postfix - Infix to Postfix Conversion Using Stack
postfix_eval - Evaluation of postfix expression using stack.
queue_array - Implementation of queue using array.
queue_linked_list - Implementation of queue using linked list.
quick_sort - Implementation of Quick sort using recursive algorithm.
merge_sort - Implementation of Merge sort using recursive algorithm.
quick_sort - Implementation of Quick sort using non-recursive algorithm.
merge_sort - Implementation of Merge sort using non-recursive algorithm.
heap_sort - Implementation of heap sort algorithm.