Linked List Basic | Data Structure And Algorithm Linked List

Digital Classes
1 min readJun 5, 2021

Linked List is a linear data structure which consists of group of nodes in a sequence.

Each node store the data and the address of the next node.

Limitations of Array

· Fixed size

· Contiguous memory block

· Insertion and deletion is costly

Advantages of Linked Lists

· They are a dynamic in nature which allocates the memory when required.

· Insertion and deletion operations can be easily implemented.

Disadvantages of Linked Lists

· The memory is wasted as pointers require extra memory for storage.

· No element can be accessed randomly; it has to access each node sequentially.

· Reverse Traversing is difficult in linked list.

#PywixClasses #DataStructureTutorial #ComputerScience #ComputerScienceTutorial #DataStructure #linkedList #EngineeringStudent #tutorial

Linked List is a linear data structure which consists of group of nodes in a sequence. Each node store the data and the address of the next node.

Limitations of Array

· Fixed size

· Contiguous memory block

· Insertion and deletion is costly

Advantages of Linked Lists

· They are a dynamic in nature which allocates the memory when required.

· Insertion and deletion operations can be easily implemented.

Disadvantages of Linked Lists

· The memory is wasted as pointers require extra memory for storage.

· No element can be accessed randomly; it has to access each node sequentially.

· Reverse Traversing is difficult in linked list.

#PywixClasses #DataStructureTutorial #ComputerScience #ComputerScienceTutorial #DataStructure #linkedList #EngineeringStudent #tutorial

--

--