Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 736 Bytes

README.md

File metadata and controls

36 lines (30 loc) · 736 Bytes

Data-and-File-Structures

DATA STRUCTURE: Structural representation of data items in primary memory to do storage & retrieval operations efficiently.
FILE STRUCTURE: Representation of items in secondary memory.

It includes

  1. Array
  2. Matrix
  3. Linked List
  4. Stack
  5. Queue
  6. Tree
  7. Heap
  8. Graph

This all includes searching and Sorting techniques codes.

Searching Techniques:

  1. Linear Search
  2. Binary Search

Sorting Techniques:
1. Bubble Sort
2. Selection Sort
3. Insertion Sort
4. Merge Sort
5. Quick Sort
6. Heap Sort
7. Radix Sort
8. Shell Soort
9. Counting Sort


All the codes are done using C