Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 693 Bytes

File metadata and controls

15 lines (14 loc) · 693 Bytes

Data-Structure-In-C

This is a repository used to host various programs in C language as a part of our Data Structure lab.
The programs that have been completed so far are as follows:

  1. Different Searching methods
  2. Different Sorting methods
  3. String Concatenation
  4. Linked list implementation in C
  5. Stack implementation using array
  6. Stack implementation using linked list
  7. Queue implementation using array
  8. Queue implementation using linked list
  9. Creation of a polynomial using linked list
  10. Addition of a polynomial using linked list
  11. Implementation of doubly ended queue in C
  12. Conversion and evaluation of infix expressions to postfix expressions using stack.