Introduction to data structures
Introduction :
Data structure is a organization or collection of data in a way, that it can be retrieved and used efficiently. They are implemented by writing a set of procedures that can create and manipulate them. They are generally based on the ability of computer to fetch the data by reading it's address, irrelevant of the sequence.
Types of DS :
There are two main types of data structures :
Why DS :
- It can store large amount of data.
- It is well structured (as the name itself suggest), that makes retrieval of the data convenient.
- Provides abstraction of information.
- Dynamic implementation provide us with efficiency in managing memory space.
Applications :
- In making and maintaining databases : using B-trees.
- Compiler implementation : Hash tables.
- In internet indexing services : Hash tables.
- Backtracking and recursion : Stack.
- Resource sharing : Queue.
- Sorting and searching : Tree.
- Representation and implementation of networks : Graph.
References :
- Data structures using c by Aaron M. Tenenbaum.
- Data structures wikibook
Comments
Swati Jaiswal
# May 21, 2016, 9:51 pm
Testing static comments!
Swati Jaiswal
# Sep 2, 2016, 2:15 pm
Testing Quotes... ''
Swati Jaiswal
# Sep 12, 2020, 8:44 pm
Testing comment notifications!
Swati Jaiswal
# Oct 14, 2020, 4:42 pm
Testing comment notifications!
Leave a comment