Self Referential structures are those structures that have one or more pointers which point to the same type of structure, as their member.

In other words, structures pointing to the same type of structures are self-referential in nature
Example:
CPP
struct node {
int data1;
char data2;
struct node* link;
};
int main()
{
struct node ob;
return 0;
}
|
Python3
class node:
def __init__( self ):
self .data1 = 0
self .data2 = ''
self .link = None
if __name__ = = '__main__' :
ob = node()
|
Javascript
class node {
constructor(data1, data2) {
this .data1 = data1;
this .data2 = data2;
this .link = null ;
}
}
let ob = new Node();
|
In the above example ‘link’ is a pointer to a structure of type ‘node’. Hence, the structure ‘node’ is a self-referential structure with ‘link’ as the referencing pointer.
An important point to consider is that the pointer should be initialized properly before accessing, as by default it contains garbage value.
Types of Self Referential Structures
- Self Referential Structure with Single Link
- Self Referential Structure with Multiple Links
Self Referential Structure with Single Link: These structures can have only one self-pointer as their member. The following example will show us how to connect the objects of a self-referential structure with the single link and access the corresponding data members. The connection formed is shown in the following figure.

Implementation:
C++
#include <stdio.h>
struct node {
int data1;
char data2;
struct node* link;
};
int main()
{
struct node ob1;
ob1.link = NULL;
ob1.data1 = 10;
ob1.data2 = 20;
struct node ob2;
ob2.link = NULL;
ob2.data1 = 30;
ob2.data2 = 40;
ob1.link = &ob2;
printf ( "%d" , ob1.link->data1);
printf ( "\n%d" , ob1.link->data2);
return 0;
}
|
Java
public class Main {
static class Node {
int data1;
int data2;
Node link;
}
public static void main(String[] args)
{
Node ob1 = new Node();
ob1.link = null ;
ob1.data1 = 10 ;
ob1.data2 = 20 ;
Node ob2 = new Node();
ob2.link = null ;
ob2.data1 = 30 ;
ob2.data2 = 40 ;
ob1.link = ob2;
System.out.println(ob1.link.data1);
System.out.println(ob1.link.data2);
}
}
|
Python3
class node:
def __init__( self ):
self .data1 = 0
self .data2 = 0
self .link = None
if __name__ = = '__main__' :
ob1 = node()
ob1.link = None
ob1.data1 = 10
ob1.data2 = 20
ob2 = node()
ob2.link = None
ob2.data1 = 30
ob2.data2 = 40
ob1.link = ob2
print (ob1.link.data1)
print (ob1.link.data2)
|
C#
using System;
public class MainClass {
public class Node {
public int data1;
public int data2;
public Node link;
}
public static void Main( string [] args)
{
Node ob1 = new Node();
ob1.link = null ;
ob1.data1 = 10;
ob1.data2 = 20;
Node ob2 = new Node();
ob2.link = null ;
ob2.data1 = 30;
ob2.data2 = 40;
ob1.link = ob2;
Console.WriteLine(ob1.link.data1);
Console.WriteLine(ob1.link.data2);
}
}
|
Javascript
class node {
constructor() {
this .data1 = 0;
this .data2 = 0;
this .link = null ;
}
}
let ob1 = new node();
ob1.link = null ;
ob1.data1 = 10;
ob1.data2 = 20;
let ob2 = new node();
ob2.link = null ;
ob2.data1 = 30;
ob2.data2 = 40;
ob1.link = ob2;
console.log(ob1.link.data1);
console.log(ob1.link.data2);
|
Self Referential Structure with Multiple Links: Self referential structures with multiple links can have more than one self-pointers. Many complicated data structures can be easily constructed using these structures. Such structures can easily connect to more than one nodes at a time. The following example shows one such structure with more than one links.
The connections made in the above example can be understood using the following figure.

Implementation:
CPP
#include <stdio.h>
struct node {
int data;
struct node* prev_link;
struct node* next_link;
};
int main()
{
struct node ob1;
ob1.prev_link = NULL;
ob1.next_link = NULL;
ob1.data = 10;
struct node ob2;
ob2.prev_link = NULL;
ob2.next_link = NULL;
ob2.data = 20;
struct node ob3;
ob3.prev_link = NULL;
ob3.next_link = NULL;
ob3.data = 30;
ob1.next_link = &ob2;
ob2.next_link = &ob3;
ob2.prev_link = &ob1;
ob3.prev_link = &ob2;
printf ( "%d\t" , ob1.data);
printf ( "%d\t" , ob1.next_link->data);
printf ( "%d\n" , ob1.next_link->next_link->data);
printf ( "%d\t" , ob2.prev_link->data);
printf ( "%d\t" , ob2.data);
printf ( "%d\n" , ob2.next_link->data);
printf ( "%d\t" , ob3.prev_link->prev_link->data);
printf ( "%d\t" , ob3.prev_link->data);
printf ( "%d" , ob3.data);
return 0;
}
|
Python3
class node:
def __init__( self ):
self .data = 0
self .prev_link = None
self .next_link = None
if __name__ = = '__main__' :
ob1 = node()
ob1.prev_link = None
ob1.next_link = None
ob1.data = 10
ob2 = node()
ob2.prev_link = None
ob2.next_link = None
ob2.data = 20
ob3 = node()
ob3.prev_link = None
ob3.next_link = None
ob3.data = 30
ob1.next_link = ob2
ob2.next_link = ob3
ob2.prev_link = ob1
ob3.prev_link = ob2
print (ob1.data,end = '\t' )
print (ob1.next_link.data,end = '\t' )
print (ob1.next_link.next_link.data)
print (ob2.prev_link.data,end = '\t' )
print (ob2.data,end = '\t' )
print (ob2.next_link.data)
print (ob3.prev_link.prev_link.data,end = '\t' )
print (ob3.prev_link.data,end = '\t' )
print (ob3.data)
|
Output
10 20 30
10 20 30
10 20 30
In the above example we can see that ‘ob1’, ‘ob2’ and ‘ob3’ are three objects of the self referential structure ‘node’. And they are connected using their links in such a way that any of them can easily access each other’s data. This is the beauty of the self referential structures. The connections can be manipulated according to the requirements of the programmer.
Applications: Self-referential structures are very useful in creation of other complex data structures like:
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
17 Jul, 2023
Like Article
Save Article