What is linked list explain its types with example?

Types of Linked List - Singly linked, doubly linked and circular

In this tutorial, you will learn different types of linked list. Also, you will find implementation of linked list in C.

Before you learn about the type of the linked list, make sure you know about the LinkedList Data Structure.

There are three common types of Linked List.

  1. Singly Linked List
  2. Doubly Linked List
  3. Circular Linked List

Types of Linked List in Data Structures

By SimplilearnLast updated on Feb 21, 20224587

What is linked list explain its types with example?

Table of Contents

View More

A linked list is like a train where each bogie is connected with links. Different types of linked lists exist to make lives easier, like an image viewer, music player, or when you navigate through web pages.

What Are the Types of Linked Lists?

What is linked list explain its types with example?

There are four key types of linked lists:

  • Singly linked lists
  • Doubly linked lists
  • Circular linked lists
  • Circular doubly linked lists

Full Stack Web Developer Course

To become an expert in MEAN StackView Course

What is linked list explain its types with example?

What is a Singly Linked List?

What is linked list explain its types with example?

A singly linked list is a unidirectional linked list. So, you can only traverse it in one direction, i.e., from head node to tail node.

What is a Doubly Linked List?

What is linked list explain its types with example?

A doubly linked list is a bi-directional linked list. So, you can traverse it in both directions. Unlike singly linked lists, its nodes contain one extra pointer called the previous pointer. This pointer points to the previous node.

Data Structure and Algorithms - Linked List


Advertisements


Previous Page

Next Page

A linked list is a sequence of data structures, which are connected together via links.

Linked List is a sequence of links which contains items. Each link contains a connection to another link. Linked list is the second most-used data structure after array. Following are the important terms to understand the concept of Linked List.

  • Link − Each link of a linked list can store a data called an element.

  • Next − Each link of a linked list contains a link to the next link called Next.

  • LinkedList − A Linked List contains the connection link to the first link called First.

Types of Linked List

Before knowing about the types of a linked list, we should know what is linked list. So, to know about the linked list, click on the link given below:

Linked List Types in Data Structure

  • Home > Programming languages > Data Structures

  • « Previous
  • Next »

    Tutorial
  • Data Structure Introduction
  • Linked List
  • Types of Linked List
  • Stack
  • Queue
  • Types of Queue
  • Searching
  • Sorting
  • Trees
  • Graphs
  • Hashing
  • File Organization

Introduction to Linked List

The following article provides an outline for Linked List Types. A Linked List is defined as a series of data structures consisting of items that are associated together via links. This Linked list is a type of linear data structure where data elements are linked in a list using pointers. Linked List is known to be the next mostly implemented data structure type after the array. Basically, the linked list includes nodes where every node consists of a data field and a link referring to the next node in the provided list.

The linked list comprises of few standard operations such as Traversal, Insertion, Searching, Deletion, Updating, Merging, and Sorting applied on the nodes and lists.Also, the Linked list is a dynamic data structure that has the feature to develop and shrink at the runtime by allotting and deallocating memory.

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

Various Linked List Types

Given below are various types of Linked List used for collecting and keeping the data items.

Also, the following are the vital terms for understanding the perception of Linked List:

  • Link: Every link of the Linked List stores data known as elements.
  • Next: Every link of the Linked List includes a link to the succeeding link known as Next.
  • Linked list: This list comprises the connection link to the initial link known as First.

Below are the Linked List types explained in detail:

1. Singly or, Simple Linked List

In this type, item navigation is simply forward. This is the simplest Linked List kind where each node consists few data and a pointer pointing to the next node of a similar data type. Here, the line that the node consists of the pointer to the next node defines that the address of the next node is stored by the node. This singly Linked List permits traversal of the info only in one way. In the linked list the pointer which contains the address of the primary node is called as a head pointer. In this singly linked list, the last node has no pointer to any node hence, this link part holds the NULL value.

You can view the diagrammatic representation of the singly linked list as follows:

Popular Course in this category

What is linked list explain its types with example?

All in One Data Science Bundle (360+ Courses, 50+ projects)360+ Online Courses | 1500+ Hours | Verifiable Certificates | Lifetime Access
4.7 (3,220 ratings)

Course Price

View Course


Related Courses

Oracle DBA Database Management System Training (2 Courses)SQL Training Program (7 Courses, 8+ Projects)

What is linked list explain its types with example?

2. Doubly Linked List

In this type, item navigation can be performed either forward or backward. Hence, this type is also known as a two-way Linked list, which is a more difficult kind of linked list consisting a pointer to the next node as well as a preceding node in the sequence. So, it includes three sections that are data, a pointer referring to the next node, and also a pointer referring to the preceding node. This technique allows us for traversing the list as well as in the backward direction. You can view the diagrammatic representation of the doubly linked list as follows:

If the node to be removed is provided, then the delete operation is found to be more resourceful. Also, if the node is provided before which the operation of insertion should take place then the insertion operation tends to be more effective.

What is linked list explain its types with example?

3. Circular Linked List

In this type, the preceding item includes a link of the primary element as next and the primary element also includes a link to the preceding element as previous. This means the last (preceding) node holds the pointer to the first node of the linked list. If the traversal takes place in a circular linked list then, one can start at any node as well as traverse the list following any direction backward and forward unless the same node is reached from where the traversal was begun. Thus, in a circular list there is no starting and end node therefore, it creates a circular loop. You can view the diagrammatic representation of the circular linked list as follows:

This circular linked list is a significant data structure when a user needs a list that is to be retrieved in a loop or circle. Operations is difficult in circular in comparison to a singly list.

What is linked list explain its types with example?

4. Doubly Circular Linked List

In this type, the linked list item consists of a link to the next along with the previous node in the series. This is an extended type of previous Linked list i.e. circular linked list. It is a two-way circular linked list which is a more complex kind of Linked List containing a pointer to the succeeding as well as the preceding node in the series. We can have the difference between the doubly linked list and circular doubly list similar to the difference between the singly list and circular list. The circular doubly linked list has no null in the preceding field of the primary node. In this list, the last node is connected to the primary node holding the link.

There may be other types like Header Linked list and Multi Linked list. Thus, a linked list can be defined as a linear collection of data items whose order is not provided by their physical placement in memory but here every item references to the next one using the pointers. It has time complexity as O(n). There are few variables applied in the Linked list such as NULL, AVAIL, START, PTR, and NEW NODE.

The Linked List has various applications such as executing arithmetic procedures in the long integer, maintaining directory names, moving songs next previous in a music player or same with the image viewer, undo operation in Photoshop and Word, applying hash tables, manipulation, and representation of polynomial, etc.It has a disadvantage that a linked list raises complexities if it operates reverse traversal.

Conclusion

This Linked List can be said as a technique to collect and store identical data items. The data structure Linked List provides easy application of other data structures like queues and stack. With different Linked List types, the Linked List makes insertion as well as deletion operations of nodes actually easier. Also, with the Linked List, the memory is not wasted as the size can be increased or decreased of the Linked List at runtime.

This is a guide to Linked List Types. Here we discuss the introduction and various linked list types for the better understanding. You may also have a look at the following articles to learn more –

  1. Circular Doubly Linked List in C
  2. LinkedList in JavaScript
  3. LinkedList in Java
  4. Reverse Linked List in Java

All in One Data Science Bundle (360+ Courses, 50+ projects)

360+ Online Courses

50+ projects

1500+ Hours

Verifiable Certificates

Lifetime Access

Learn More

0 Shares

Share

Tweet

Share

Basic concepts and nomenclatureEdit

Each record of a linked list is often called an 'element' or 'node'.

The field of each node that contains the address of the next node is usually called the 'next link' or 'next pointer'. The remaining fields are known as the 'data', 'information', 'value', 'cargo', or 'payload' fields.

The 'head' of a list is its first node. The 'tail' of a list may refer either to the rest of the list after the head, or to the last node in the list. In Lisp and some derived languages, the next node may be called the 'cdr' (pronounced could-er) of the list, while the payload of the head node may be called the 'car'.

Singly linked listEdit

Singly linked lists contain nodes which have a data field as well as 'next' field, which points to the next node in line of nodes. Operations that can be performed on singly linked lists include insertion, deletion and traversal.

A singly linked list whose nodes contain two fields: an integer value and a link to the next node

The following code demonstrates how to add a new node with data "value" to the end of a singly linked list:

node addNode(node head, int value) { node temp, p; // declare two nodes temp and p temp = createNode(); // assume createNode creates a new node with data = 0 and next pointing to NULL. temp->data = value; // add element's value to data part of node if (head == NULL) { head = temp; // when linked list is empty } else { p = head; // assign head to p while (p->next != NULL) { p = p->next; // traverse the list until p is the last node. The last node always points to NULL. } p->next = temp; // Point the previous last node to the new node created. } return head; }

Doubly linked listEdit

In a 'doubly linked list', each node contains, besides the next-node link, a second link field pointing to the 'previous' node in the sequence. The two links may be called 'forward('s') and 'backwards', or 'next' and 'prev'('previous').

A doubly linked list whose nodes contain three fields: an integer value, the link forward to the next node, and the link backward to the previous node

A technique known as XOR-linking allows a doubly linked list to be implemented using a single link field in each node. However, this technique requires the ability to do bit operations on addresses, and therefore may not be available in some high-level languages.

Many modern operating systems use doubly linked lists to maintain references to active processes, threads, and other dynamic objects.[2] A common strategy for rootkits to evade detection is to unlink themselves from these lists.[3]

Multiply linked listEdit

In a 'multiply linked list', each node contains two or more link fields, each field being used to connect the same set of data records in a different order of same set (e.g., by name, by department, by date of birth, etc.). While doubly linked lists can be seen as special cases of multiply linked list, the fact that the two and more orders are opposite to each other leads to simpler and more efficient algorithms, so they are usually treated as a separate case.

Circular linked listEdit

In the last node of a list, the link field often contains a null reference, a special value is used to indicate the lack of further nodes. A less common convention is to make it point to the first node of the list; in that case, the list is said to be 'circular' or 'circularly linked'; otherwise, it is said to be 'open' or 'linear'. It is a list where the last pointer points to the first node.

In the case of a circular doubly linked list, the first node also points to the last node of the list.

Sentinel nodesEdit

In some implementations an extra 'sentinel' or 'dummy' node may be added before the first data record or after the last one. This convention simplifies and accelerates some list-handling algorithms, by ensuring that all links can be safely dereferenced and that every list (even one that contains no data elements) always has a "first" and "last" node.

Empty listsEdit

An empty list is a list that contains no data records. This is usually the same as saying that it has zero nodes. If sentinel nodes are being used, the list is usually said to be empty when it has only sentinel nodes.

Hash linkingEdit

The link fields need not be physically part of the nodes. If the data records are stored in an array and referenced by their indices, the link field may be stored in a separate array with the same indices as the data records.

List handlesEdit

Since a reference to the first node gives access to the whole list, that reference is often called the 'address', 'pointer', or 'handle' of the list. Algorithms that manipulate linked lists usually get such handles to the input lists and return the handles to the resulting lists. In fact, in the context of such algorithms, the word "list" often means "list handle". In some situations, however, it may be convenient to refer to a list by a handle that consists of two links, pointing to its first and last nodes.

Combining alternativesEdit

The alternatives listed above may be arbitrarily combined in almost every way, so one may have circular doubly linked lists without sentinels, circular singly linked lists with sentinels, etc.

TradeoffsEdit

As with most choices in computer programming and design, no method is well suited to all circumstances. A linked list data structure might work well in one case, but cause problems in another. This is a list of some of the common tradeoffs involving linked list structures.

Linked lists vs. dynamic arraysEdit

A dynamic array is a data structure that allocates all elements contiguously in memory, and keeps a count of the current number of elements. If the space reserved for the dynamic array is exceeded, it is reallocated and (possibly) copied, which is an expensive operation.

Linked lists have several advantages over dynamic arrays. Insertion or deletion of an element at a specific point of a list, assuming that we have indexed a pointer to the node (before the one to be removed, or before the insertion point) already, is a constant-time operation (otherwise without this reference it is O(n)), whereas insertion in a dynamic array at random locations will require moving half of the elements on average, and all the elements in the worst case. While one can "delete" an element from an array in constant time by somehow marking its slot as "vacant", this causes fragmentation that impedes the performance of iteration.

Moreover, arbitrarily many elements may be inserted into a linked list, limited only by the total memory available; while a dynamic array will eventually fill up its underlying array data structure and will have to reallocate—an expensive operation, one that may not even be possible if memory is fragmented, although the cost of reallocation can be averaged over insertions, and the cost of an insertion due to reallocation would still be amortized O(1). This helps with appending elements at the array's end, but inserting into (or removing from) middle positions still carries prohibitive costs due to data moving to maintain contiguity. An array from which many elements are removed may also have to be resized in order to avoid wasting too much space.

On the other hand, dynamic arrays (as well as fixed-size array data structures) allow constant-time random access, while linked lists allow only sequential access to elements. Singly linked lists, in fact, can be easily traversed in only one direction. This makes linked lists unsuitable for applications where it's useful to look up an element by its index quickly, such as heapsort. Sequential access on arrays and dynamic arrays is also faster than on linked lists on many machines, because they have optimal locality of reference and thus make good use of data caching.

Another disadvantage of linked lists is the extra storage needed for references, which often makes them impractical for lists of small data items such as characters or boolean values, because the storage overhead for the links may exceed by a factor of two or more the size of the data. In contrast, a dynamic array requires only the space for the data itself (and a very small amount of control data).[note 1] It can also be slow, and with a naïve allocator, wasteful, to allocate memory separately for each new element, a problem generally solved using memory pools.

Some hybrid solutions try to combine the advantages of the two representations. Unrolled linked lists store several elements in each list node, increasing cache performance while decreasing memory overhead for references. CDR coding does both these as well, by replacing references with the actual data referenced, which extends off the end of the referencing record.

A good example that highlights the pros and cons of using dynamic arrays vs. linked lists is by implementing a program that resolves the Josephus problem. The Josephus problem is an election method that works by having a group of people stand in a circle. Starting at a predetermined person, one may count around the circle n times. Once the nth person is reached, one should remove them from the circle and have the members close the circle. The process is repeated until only one person is left. That person wins the election. This shows the strengths and weaknesses of a linked list vs. a dynamic array, because if the people are viewed as connected nodes in a circular linked list, then it shows how easily the linked list is able to delete nodes (as it only has to rearrange the links to the different nodes). However, the linked list will be poor at finding the next person to remove and will need to search through the list until it finds that person. A dynamic array, on the other hand, will be poor at deleting nodes (or elements) as it cannot remove one node without individually shifting all the elements up the list by one. However, it is exceptionally easy to find the nth person in the circle by directly referencing them by their position in the array.

The list ranking problem concerns the efficient conversion of a linked list representation into an array. Although trivial for a conventional computer, solving this problem by a parallel algorithm is complicated and has been the subject of much research.

A balanced tree has similar memory access patterns and space overhead to a linked list while permitting much more efficient indexing, taking O(log n) time instead of O(n) for a random access. However, insertion and deletion operations are more expensive due to the overhead of tree manipulations to maintain balance. Schemes exist for trees to automatically maintain themselves in a balanced state: AVL trees or red–black trees.

Singly linked linear lists vs. other listsEdit

While doubly linked and circular lists have advantages over singly linked linear lists, linear lists offer some advantages that make them preferable in some situations.

A singly linked linear list is a recursive data structure, because it contains a pointer to a smaller object of the same type. For that reason, many operations on singly linked linear lists (such as merging two lists, or enumerating the elements in reverse order) often have very simple recursive algorithms, much simpler than any solution using iterative commands. While those recursive solutions can be adapted for doubly linked and circularly linked lists, the procedures generally need extra arguments and more complicated base cases.

Linear singly linked lists also allow tail-sharing, the use of a common final portion of sub-list as the terminal portion of two different lists. In particular, if a new node is added at the beginning of a list, the former list remains available as the tail of the new one—a simple example of a persistent data structure. Again, this is not true with the other variants: a node may never belong to two different circular or doubly linked lists.

In particular, end-sentinel nodes can be shared among singly linked non-circular lists. The same end-sentinel node may be used for every such list. In Lisp, for example, every proper list ends with a link to a special node, denoted by nil or (), whose CAR and CDR links point to itself. Thus a Lisp procedure can safely take the CAR or CDR of any list.

The advantages of the fancy variants are often limited to the complexity of the algorithms, not in their efficiency. A circular list, in particular, can usually be emulated by a linear list together with two variables that point to the first and last nodes, at no extra cost.

Doubly linked vs. singly linkedEdit

Double-linked lists require more space per node (unless one uses XOR-linking), and their elementary operations are more expensive; but they are often easier to manipulate because they allow fast and easy sequential access to the list in both directions. In a doubly linked list, one can insert or delete a node in a constant number of operations given only that node's address. To do the same in a singly linked list, one must have the address of the pointer to that node, which is either the handle for the whole list (in case of the first node) or the link field in the previous node. Some algorithms require access in both directions. On the other hand, doubly linked lists do not allow tail-sharing and cannot be used as persistent data structures.

Circularly linked vs. linearly linkedEdit

A circularly linked list may be a natural option to represent arrays that are naturally circular, e.g. the corners of a polygon, a pool of buffers that are used and released in FIFO ("first in, first out") order, or a set of processes that should be time-shared in round-robin order. In these applications, a pointer to any node serves as a handle to the whole list.

With a circular list, a pointer to the last node gives easy access also to the first node, by following one link. Thus, in applications that require access to both ends of the list (e.g., in the implementation of a queue), a circular structure allows one to handle the structure by a single pointer, instead of two.

A circular list can be split into two circular lists, in constant time, by giving the addresses of the last node of each piece. The operation consists in swapping the contents of the link fields of those two nodes. Applying the same operation to any two nodes in two distinct lists joins the two list into one. This property greatly simplifies some algorithms and data structures, such as the quad-edge and face-edge.

The simplest representation for an empty circular list (when such a thing makes sense) is a null pointer, indicating that the list has no nodes. Without this choice, many algorithms have to test for this special case, and handle it separately. By contrast, the use of null to denote an empty linear list is more natural and often creates fewer special cases.

For some applications, it can be useful to use singly linked lists that can vary between being circular and being linear, or even circular with a linear initial segment. Algorithms for searching or otherwise operating on these have to take precautions to avoid accidentally entering an endless loop. One usual method is to have a second pointer walking the list at half or double the speed, and if both pointers meet at the same node, you know you found a cycle.

Using sentinel nodesEdit

Sentinel node may simplify certain list operations, by ensuring that the next or previous nodes exist for every element, and that even empty lists have at least one node. One may also use a sentinel node at the end of the list, with an appropriate data field, to eliminate some end-of-list tests. For example, when scanning the list looking for a node with a given value x, setting the sentinel's data field to x makes it unnecessary to test for end-of-list inside the loop. Another example is the merging two sorted lists: if their sentinels have data fields set to +∞, the choice of the next output node does not need special handling for empty lists.

However, sentinel nodes use up extra space (especially in applications that use many short lists), and they may complicate other operations (such as the creation of a new empty list).

However, if the circular list is used merely to simulate a linear list, one may avoid some of this complexity by adding a single sentinel node to every list, between the last and the first data nodes. With this convention, an empty list consists of the sentinel node alone, pointing to itself via the next-node link. The list handle should then be a pointer to the last data node, before the sentinel, if the list is not empty; or to the sentinel itself, if the list is empty.

The same trick can be used to simplify the handling of a doubly linked linear list, by turning it into a circular doubly linked list with a single sentinel node. However, in this case, the handle should be a single pointer to the dummy node itself.[8]

Linked List and its types

Posted Date:23 May 2011 |Updated:23-May-2011 |Category: Computer & Technology |Author: Jagannathan |Member Level: Gold |Points: 10 |


Linked list concept is used in almost all the programming languages like C, C++, and JAVA. Linked list is a type of data structure and uses a sequence of nodes with the reference or pointer to indicate the next node in the list. This article explains all about the linked list, its various operations and the linked list applications.

Linked List


Linked list is a type of data structure commonly used in computer programming. Linked list uses a sequence of nodes with the reference or pointer to indicate the next node in the list. In linked list all the nodes are connected with the pointers. The starting element is indicated by the keyword Start . The last element in the list is indicated by the keyword Null . There is no limit for the list and as many elements can be included in the list according to the situation where the linked list is being implemented. The main advantage of the linked list is it doesn't waste the memory space and this is the main reason, the programmers prefer linked list in their programs.

Functions on Linked List


The following functions can be performed on the Linked list:
  • Insertion
  • Deletion

    An element can be inserted anywhere in the list and in the same way any element from any position can be deleted from the list. If we consider array, the insertion and deletion can be possible only from one end and not in the middle of an array. But in the case of linked list, insertion and deletion are possible from the middle of the list. The only pattern is to specify the particular pointer from where the insertion or deletion has to be made.

    Types of Linked List


    Depending upon the situation or circumstances, the linked list can be used on the following types:
  • Linear linked list
  • Circular linked list
  • Doubly linked list

    Linear linked list: This list contains the head which indicates the starting point of the list and the pointer which indicates the next element in the list. The Null pointer will indicate the final element of the list.

    Circular linked list: This list is as same as the linear list except that the pointer of the last element will point to the first element thus achieving the circular type.

    Doubly linked list: As the name implies, there will be two pointers in each node and this type of list can be traversed in both the direction, i.e., either in forward direction or in backward direction.

    Operations in Linked List


    The following are the operations, which can be performed on the linked list by the using the keyword Head, Start and Null pointers:
  • To create a linked list
  • Traverse the list
  • Insert an element in the list
  • Delete an element in the list
  • Combining two lists in a single linked list
    We will be new to the traverse operation. It is nothing but passing through the list with the series of the pointers either in forward direction or in reverse direction. Linked list can be associated to Stack (Last-In-First-Out) and Queue (First-In-First-Out) by using the pointers. The Stack and Queue can be implemented by using array and linked list.

    Implementation of linked list:


    The following are the implementations of linked list:
  • Stack and Queue are implemented by using linked list
  • Application that access in sequential order uses linked list
  • Polynomials representation using linked list