Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 516 Bytes

data_structures.md

File metadata and controls

32 lines (19 loc) · 516 Bytes

Data Structures: Collecting and organising data in a particular way, so that it can be used efficienty.

Types:

  • Primitive DS

  • Abstract DS:

    • Linked List
    • Tree
    • Graph

Linear And Non Linear DS:

  • Linear : Data organised in linear way eg. stack

  • Non Linear : Graphn ,Linked List

Linked List:

Each Node has 2 parts : data and address Types : + Single Linked List : + Doubly + Circluar

Stack :

Linear DS allowing you to add or remove element in a particular order