linked list simple
linked list simple
Data Type:
Data type is way to classify various types of data such as integer, string
etc. which determines the values that can be used with the corresponding
type of data, the type of operations that can be performed on the
corresponding type of data. Data type of two types
✓ CREATE
✓ DESTROY
✓ SELECT
✓ UPDATE
Data Structure:
Data Structure is a way of collecting and organizing data in such a way
that we can perform operations on these data in an effective way. Data
Structures is about rendering data elements in terms of some relationship,
for better organization and storage.
Ex:
o Array
o Linked List
o Stack
o Queue.
o Trees
o Graphs
o
➢ Declaration of Data
➢ Declaration of Operations
ADT Student
Data :
Roll_Number;
Student_Name;
Marks_in_different_subjects;
Sex;
Age;
Operations:
Read_information();
Display_information();
Print_mark_Sheet();
Algorithm properties
1. Time Complexity
2. Space Complexity
Space Complexity
Its the amount of memory space required by the algorithm, during the
course of its execution. Space complexity must be taken seriously for multi-
user systems and in situations where limited memory is available.
An algorithm generally requires space for following components :
Time Complexity
Refinement stages
Conceptual Level
At this level we decide how the data is related to each other, and what
operations are needed.
Details about how to store data and how various operations are performed
on that data are not decided at this level
Algorithmic or Data Structure Level
At implementation level, we decide the details of how the data structures will
be represented in the computer memory.
Application Level
This level settles all details required for particular application such as names
for variables or special requirements for the operations imposed by
applications
Examples:
❖ Array
❖ Linked List
We can implement a list using simple arrays concept. We can store any data
in the list. we create the array with relevant type of data, which is storing
in it. For Example, List of Students that are having their total percentage
above 70. For this we have to maintain their names so we need to declare
String array in this context.
We need to declare an array with desired size and read the elements
in that array. This task will create a list with given size and it also assigns
the items to that list also.
Insertion refers to adding the other element to the array. Insertion can
be easily done at end of the array. This can be done when there is an
additional space in the array. If we are intended to place new element at
middle the elements must movie forward to the new locations to
accommodate the new element.
Deleting element means removing the element from the existing array
by specifying its index.
Advantages:
Linked Lists
A list is a set of similar data components. A list whose components
are linked together by means of a pointer (reference) is referred to as linked
list. In linked list, each individual component within the list includes a
pointer which indicates the address of the next component in the list.
Therefore, the relative order of the components can easily be changed by
simply altering the pointers. Individual components can easily be added to
(or) deleted from the list by altering the pointers.
• In a single linked list, the address of the first node is always stored in
a reference node known as "front" (Some times it is also known as
"head").
• Always next part (reference part) of the last node must be NULL.
Example
• Creation
• Insertion
• Deletion
• Displa
Insertion
We can use the following steps to insert a new node at beginning of the
single linked list...
r root
10 20 30 40 50 NULL
25 NULL
newnode
root’ is a variable which holds the address of the first element in the
linked list. Each element consists of data and address field.
root = newnode;
(root)
25 10 20 30 40 50 NULL
new element
(root)
10 20 30 40 50 NULL
35 NULL p
newnode
‘root’ holds the address of first element. To insert an element after element.
(root)
10 20 30 35 40 50 NULL
Inserted element
(root)
10 20 30 40 NULL
35 NULL
newnode
(root)
10 20 30 40 35 NULL
Deletion
In a single linked list, the deletion operation can be performed in three ways.
They are as follows...
We can use the following steps to delete a node from beginning of the single
linked list...
We can use the following steps to delete a node from end of the single linked
list...
q p
where root holds address of the first element. ‘p’ holds address of the
element which is to be deleted , ‘q’ holds address of element before p.
(root)
10 20 30 NULL
We can use the following steps to delete a specific node from the single
linked list...
where root holds address of the first element. ‘p’ holds address of the
element which is to be deleted , ‘q’ holds address of element before p.
iii) Find the address of the element to be deleted, by processing the list
from beginning. Say address of the element is ‘p’. And ‘q’ is the
address of the element which is before ‘p’ element.
iv) Move address of element ‘40’ to q address field.
q->next =p->next;
A Double Linked List is a list in which each component in the linked list have
two pointers which can point to both the next element and the previous
element. The concept of double linked list is as shown in figure below
Each component in the double linked list has the following structure.
The main advantage of double linked list is that it permit traversing and
searching of the list in both directions. For a given pointer to any list
element, it is possible to get to any other element in the list. To move to
the end of the list, simply follow the next pointers and to move to the
beginning of the list, simply follow the previous pointers.
When compared to single linked list, the extra pointers in double linked
list occupies additional space and also increases the maintenance of the
insertion and deletion because there are more pointers to adjust.
3. Create new node and link new node and previous nodes bidirectional.
4. Repeat step 3, until required no. of nodes are linked. Keep the address of
the last node in a separate variable say tail.
Ex:
head tail
NULL 10 20 30 NULL
5. Keep left pointer of first node and right pointer of last node as NULL.
head tail
NULL 10 20 30 40 NULL
NULL 5 NULL
newnode
n->rptr = head;
head->lptr = newnode;
head = newnode;
NULL 5 10 20 30 40 NULL
inserted element
head tail
NULL 10 20 30 NULL
NULL 5 NULL
newnode
n->lptr = tail;
tail->rptr = newnode;
tail = newnode;
Linked List after Insertion
head tail
NULL 10 20 30 5 NULL
inserted element
NULL 10 20 30 NULL
p
NULL 25 NULL
newnode
1. Create a new element and assume ‘newnode’ holds address of new
element.
2. Find address of the element, after which new element is to be inserted.
Ex: after element 20. ‘p’ holds address of element ‘20’.
3. Move address of element ‘20’ to left pointer of new element.
4. Move address of element ‘30’ to right pointer of new element.
5. Move address of new element to left pointer of 30.
6. Move address of new element to right pointer of 20.
p->next=r;
newnode->lptr=p
newnode->rptr=r
r->lptr=newnode
p->next=newnode
NULL 10 20 25 30 NULL
inserted element
Any element can be deleted from the double linked list by knowing the
address of the element.
head tail
NULL 10 20 30 NULL
element to be deleted
head tail
NULL 20 30 NULL
NULL 10 20 30 NULL
tail = tail->lptr;
tail->rptr = NULL;
Linked List after deletion :
head tail
NULL 10 20 NULL
head tail
NULL 10 20 30 NULL
q p r
1. Find the element to delete by processing list either from head (or) from
tail. Assume ‘p’ holds address of element to be deleted.
Ex: Element to be deleted is ’20’ . ‘p’ holds address of 20.
head tail
NULL 10 30
In a circular linked list, the last node contains a pointer to the first
node of the list. We can have a circular singly linked list as well as a circular
doubly linked list. While traversing a circular linked list, we can begin at any
node and traverse the list in any direction, forward or backward, until we
reach the same node where we started. Thus, a circular linked list has no
beginning and no ending.
Note that there are no NULL values in the NEXT part of any of the nodes of
list.
Case 1: The new node is inserted at the beginning of the circular linked list.
Case 2: The new node is inserted at the end of the circular linked list.
Suppose we want to add a new node with data 9 as the first node of the list.
Then the following changes will be done in the linked list.
We will take two cases and then see how deletion is done in each
case. Rest of the cases of deletion are same as that given for singly linked
lists.
When we want to delete a node from the beginning of the list, then the
following changes will be done in the linked list.
Suppose we want to delete the last node from the linked list, then the
following changes will be done in the linked list.