Recommended
PPTX
This is all about linear and non-linear data structure.data structure.pptx
PPTX
fundamental of the datastructureppt-211022055243.pptx
PPTX
Data structure power point presentation
PPTX
basics of data structute Data Structure Basic.pptx
PPTX
Unit 1 Introduction to Data Structures(1) 2.pptx
PPTX
sourabhpptsasdfghjkcdfxcvhbycfxv hgvihjubgveminar.pptx
PPTX
S. Chakraborty (DS).pptxkmmmmkwmmqm BNN n
PPTX
Data structure ppt omamammama jammwal2222
PPT
Introduction to data structure
PPTX
PPT Format prashant .pptx
PPTX
ds classificationtypeswithexampleimages.pptx
PPTX
Introduction to data structures (ss)
PDF
CSE_D:11:_Somnath Mallick_3rd semister.pdf
PPTX
PPTX
Classification of Data Structure -Linear and Non Linear
PPTX
Data struchers and algorithms
PDF
3130703dsgtudarshan Enotesallunits Darshan Institute Of Engineering Technology
PPTX
696857659-Introduction-of-Data-Structure-PPT.pptx
PPTX
Introduction-of-basic Data-Structure-PPT.pptx
PPTX
Data Structure 1..Vary Basic introduction about DSA using c++.pptx
PPT
Data structure introduction document download
PDF
Data Structure Ppt for our engineering college industrial training.
PPTX
Linear-and-Nonlinear-Data-Structures.pptx
PPTX
PPTX
Classification of DS.pptx
PPTX
DS2-CLASSIFICATIONnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn.pptx
PPTX
DS2-CLASSIFICATIONnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn.pptx
PPTX
DS2-CLASSIFICATION11111111111111111111111111111111.pptx
PPTX
DIFFERENT TYPES OF SRTUCTURAL SYSTEM ANALYSIS
PDF
PROBLEM SLOVING AND PYTHON PROGRAMMING UNIT 3.pdf
More Related Content
PPTX
This is all about linear and non-linear data structure.data structure.pptx
PPTX
fundamental of the datastructureppt-211022055243.pptx
PPTX
Data structure power point presentation
PPTX
basics of data structute Data Structure Basic.pptx
PPTX
Unit 1 Introduction to Data Structures(1) 2.pptx
PPTX
sourabhpptsasdfghjkcdfxcvhbycfxv hgvihjubgveminar.pptx
PPTX
S. Chakraborty (DS).pptxkmmmmkwmmqm BNN n
PPTX
Data structure ppt omamammama jammwal2222
Similar to ds.pptx This is all about linear and non-linear data structure.
PPT
Introduction to data structure
PPTX
PPT Format prashant .pptx
PPTX
ds classificationtypeswithexampleimages.pptx
PPTX
Introduction to data structures (ss)
PDF
CSE_D:11:_Somnath Mallick_3rd semister.pdf
PPTX
PPTX
Classification of Data Structure -Linear and Non Linear
PPTX
Data struchers and algorithms
PDF
3130703dsgtudarshan Enotesallunits Darshan Institute Of Engineering Technology
PPTX
696857659-Introduction-of-Data-Structure-PPT.pptx
PPTX
Introduction-of-basic Data-Structure-PPT.pptx
PPTX
Data Structure 1..Vary Basic introduction about DSA using c++.pptx
PPT
Data structure introduction document download
PDF
Data Structure Ppt for our engineering college industrial training.
PPTX
Linear-and-Nonlinear-Data-Structures.pptx
PPTX
PPTX
Classification of DS.pptx
PPTX
DS2-CLASSIFICATIONnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn.pptx
PPTX
DS2-CLASSIFICATIONnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn.pptx
PPTX
DS2-CLASSIFICATION11111111111111111111111111111111.pptx
Recently uploaded
PPTX
DIFFERENT TYPES OF SRTUCTURAL SYSTEM ANALYSIS
PDF
PROBLEM SLOVING AND PYTHON PROGRAMMING UNIT 3.pdf
PPTX
A professional presentation on Cosmos Bank Heist
PPTX
How Does LNG Regasification Work | INOXCVA
PPTX
INTEGRATED COMMUNICATION AND SENSING Presentation.pptx
PDF
Microcontroller Notes Final 2016 April june.pdf
PDF
Weak Incentives (WINK): The Agent Definition Layer
PPTX
Presentation-WPS Office.pptx afgouvhyhgfccf
PDF
(en/zhTW) Heterogeneous System Architecture: Design & Performance
PPTX
Every Plant Has a Weak Link: How AI CMMS Exposes Hidden Reliability Risks
PDF
Basics of Electronics Task by Vivaan Jo Varghese.pdf
PDF
AWS Re:Invent 2025 Recap by FivexL - Guilherme, Vladimir, Andrey
PDF
Role of Training and Development in Enhancing Safety Performance in Opencast ...
PPTX
Batch-1(End Semester) Student Of Shree Durga Tech. PPT.pptx
PDF
Highway Curves in Transportation Engineering.pdf
PDF
engineering management chapter 5 ppt presentation
PPTX
Why TPM Succeeds in Some Plants and Struggles in Others | MaintWiz
PPTX
Fuel Injection Pump Test Bench – Precision Testing & Calibration for Diesel E...
PDF
Applications of AI in Civil Engineering - Dr. Rohan Dasgupta
PDF
Microeconomics Theory and Market Structure.pdf
ds.pptx This is all about linear and non-linear data structure. 1. 2. 3. INTRODUCTION
What is Data Structure?
A data structure is a way of storing and organizing data in a
computer so that it can be used efficiently
Main Categories:
1. Linear Data Structures:Elements arranged in a sequence (one after
another).
2. Non-linear Data Structures:Elements arranged in a hierarchical or
graph-like manner.
4. Linear Data Structure
Data elements arranged sequentially (one after another).Every
element has next and sometimes previous element.Easy to traverse
(start → end).
Examples:
Array
Linked List
Stack
Queue
5. Non-linear Data Structure
Data elements are not arranged sequentially.
Elements can connect in hierarchical or graphical manner.
Traversal is complex.
Examples:
Tree
Graph
Hash Table
6. Linear Data Structure VS Non Linear
Data Structure
Linear Data structure
Elements stored sequentially(one after
another.
Easy to implement and use
In linear data structure single level is
involved
In linear Data structure memory is not
utilized in efficient way
Example:array,stack,queue, linkedlist
Non linear Data structure
Element stored in hierarchical or
graph-like manner.
More complex to implement
In Non linear data structure Multi-
level is involved
In linear Data structure memory is
utilized in efficient way
Example:Tree ,Graph.