An open API service indexing awesome lists of open source software.

https://github.com/nandahkrishna/datastructureslab

Programs written for Data Structures Lab in the 3rd Semester
https://github.com/nandahkrishna/datastructureslab

c c-programming data-structures datastructures

Last synced: about 1 year ago
JSON representation

Programs written for Data Structures Lab in the 3rd Semester

Awesome Lists containing this project

README

          

# Data Structures Lab
Programs written for Data Structures Lab in the 3rd Semester. All programs are written in C.
## Exercises
1. Linear and Binary Search

2. Linked Lists:

a. Singly linked list

b. Doubly linked list

c. Circular linked list

d. Doubly circular linked list

e. Polynomial addition using linked list

3. Stacks:

a. Array implementation of stack

b. Infix to Postfix expression conversion

c. Evaluation of Postfix expression

4. Queues:

a. Array implementation of queue

b. Circular queue

c. Priority queue

d. Doubly ended queue

5. Binary Trees:

a. Traversal - Inorder, Preorder, Postorder

b. Binary Search Tree

c. Expression Tree

d. AVL Tree

e. Heap (Min-Heap)

6. Graphs:

a. Depth First Search and Pathfinder

b. Breadth First Search and Pathfinder

7. Hashing:

a. Separate Chaining

b. Open Addressing - Linear Probing