The perfect place for easy learning...

Data Structures

×

Topics List

Place your ad here

Linear & Non-Linear Data Structures

What is Data Structure?

Whenever we want to work with a large amount of data, then organizing that data is very important. If that data is not organized effectively, it is very difficult to perform any task on that data. If it is organized effectively then any operation can be performed easily on that data.
A data structure can be defined as follows...

Data structure is a method of organizing a large amount of data more efficiently so that any operation on that data becomes easy

Note -
  Every data structure is used to organize the large amount of data
  Every data structure follows a particular principle
  The operations in data structure should not violate the basic principle of that data structure.

Based on the organizing method of data structure, data structures are divided into two types.

  • Linear Data Structures
  • Non - Linear Data Structures

Linear Data Structures

If a data structure organizes the data in sequential order, then that data structure is called a Linear Data Structure.

Example

  1. Arrays
  2. List (Linked List)
  3. Stack
  4. Queue

Non - Linear Data Structures

If a data structure organizes the data in random order, then that data structure is called as Non-Linear Data Structure.

Example

  1. Tree
  2. Graph
  3. Dictionaries
  4. Heaps
  5. Tries, Etc.,
Place your ad here
Place your ad here