C Sorted Linked List

Sorted Linked List

Sorted Linked list stores the element in the linked list as sorted order (ascending order).

Linked list are not stored in adjacent locations and array occupy continuous locations.

C Program to Implement Sorted Linked List and Operations

#include<stdio.h>  

//structure contains data and link
struct node
{
    int data;
    struct node *link;
};

// adding element in the linked list as sorted order
int add(struct node **head, int data)
{
    struct node *temp, *tail;
    temp = *head;
    tail = malloc( sizeof (struct node));                                   
    tail->data = data;  
    tail->link = NULL;
    // if linked list is empty, adding as first node.
    if(*head == NULL || (*head)->data > data)
    {
        *head = tail;
        (*head)->link = temp;
        return 1;
    }
    // search the position and adding the element
    else
    {
        //Move to last node
        while(temp != NULL)
        {
            if(temp->data <= data && (temp->link->data > data || temp->link == NULL))
            {
                tail->link = temp->link;
                temp->link = tail;
                return 1;
            }
            // move to the next node
            temp = temp->link;
        }
    }
    return 0; 
}

// displays the sorted linked list
void display(struct node *head)
{
    printf("\n");
    // traversing entire linked list
    printf("\nhead==>");
    while(head != NULL)
    {
        printf("%d-->", head->data);
        head = head->link;
    }
    printf("tail");
}

// finds the number of elements in the sorted linked list
int count(struct node *head)
{
    int c = 0;
    while(head != NULL)                                                         
    {                                                                           
        head = head->link;          
        c++;
    } 
    return c;
}

// Deletes the any element in the sorted linked list
int delete(struct node **head, int data)
{
    struct node *old, *temp;
    temp = *head;

    while(temp != NULL)
    {
        if(temp->data == data)
        {
            // deleting first node if data matches
            if(temp == *head)
            {
                *head = temp->link;
                free(temp);
                return 1;
            }
            // deleting other nodes except first node
            else
            {
                old->link = temp->link;
                free(temp);
                return 1;
            }
        }
        // old points to the previous node
        old = temp;
        temp = temp->link;
    }
    return 0;
}


void main()                                                                     
{       
    int op, data, loc;                                                                        
    struct node *ptr;                                                           
    // Empty linked list                                                        
    ptr = NULL;                                                                 
                                                                                
    printf("\nNumber of elements in the linked list: %d", count(ptr));          
    add(&ptr, 3);                                                            
    add(&ptr, 2);                                                            
    add(&ptr, 1);                                                            
                                                                                
    display(ptr);       
    printf("\nNumber of elements in the linked list: %d", count(ptr));

    do
    {
        printf("\nLinked List\n---------------\n1.Add element\n2.delete\n3.display\n4.count\n0.exit");
        printf("\nEnter choice: ");
        scanf("%d", &op);
        switch(op)
        {
            case 1:
                printf("\nEnter element: ");                                    
                scanf("%d", &data);                                             
                add(&ptr, data);  
                break;
            case 2:
                printf("\nEnter element: ");                                    
                scanf("%d", &data);                                             
                delete(&ptr, data);  
                break;
            case 3:
                display(ptr);
                break;
            case 4:
                printf("\nNumber of elements in the linked list: %d", count(ptr));
                break;
        }
    }while(op>=1 && op<=4);
}     
                                                                                                                                                                                                                                                                                                                                                                                                           
Compilation:

$ cc sorted-linked-list.c 
sorted-linked-list.c: In function ‘add’:
sorted-linked-list.c:14:12: warning: implicit declaration of function ‘malloc’ [-Wimplicit-function-declaration]
     tail = malloc( sizeof (struct node));
            ^~~~~~
sorted-linked-list.c:14:12: warning: incompatible implicit declaration of built-in function ‘malloc’
sorted-linked-list.c:14:12: note: include ‘’ or provide a declaration of ‘malloc’
sorted-linked-list.c: In function ‘delete’:
sorted-linked-list.c:80:17: warning: implicit declaration of function ‘free’ [-Wimplicit-function-declaration]
                 free(temp);
                 ^~~~
sorted-linked-list.c:80:17: warning: incompatible implicit declaration of built-in function ‘free’
sorted-linked-list.c:80:17: note: include ‘’ or provide a declaration of ‘free’
sorted-linked-list.c:87:17: warning: incompatible implicit declaration of built-in function ‘free’
                 free(temp);
                 ^~~~
sorted-linked-list.c:87:17: note: include ‘’ or provide a declaration of ‘free’
Output:
$ ./a.out 

Number of elements in the linked list: 0

head==>1-->2-->3-->tail
Number of elements in the linked list: 3
Linked List
---------------
1.Add element
2.delete
3.display
4.count
0.exit
Enter choice: 3


head==>1-->2-->3-->tail
Linked List
---------------
1.Add element
2.delete
3.display
4.count
0.exit
Enter choice: 1

Enter element: 1

Linked List
---------------
1.Add element
2.delete
3.display
4.count
0.exit
Enter choice: 3


head==>1-->1-->2-->3-->tail
Linked List
---------------
1.Add element
2.delete
3.display
4.count
0.exit
Enter choice: 2

Enter element: 1

Linked List
---------------
1.Add element
2.delete
3.display
4.count
0.exit
Enter choice: 3       


head==>1-->2-->3-->tail
Linked List
---------------
1.Add element
2.delete
3.display
4.count
0.exit
Enter choice: 1

Enter element: 1

Linked List
---------------
1.Add element
2.delete
3.display
4.count
0.exit
Enter choice: 3


head==>1-->1-->2-->3-->tail
Linked List
---------------
1.Add element
2.delete
3.display
4.count
0.exit
Enter choice: 4

Number of elements in the linked list: 4
Linked List
---------------
1.Add element
2.delete
3.display
4.count
0.exit
Enter choice: 0

C Program Examples

C program to cmpute matrix addition using two dimensional array

C program to cmpute matrix subtraction using two dimensional array

C program to cmpute matrix multiplication using two dimensional array

C program to compute different order of matrix multiplication

C program to generate identity matrix for required rows and columns

C program to validate whether matrix is identity matrix or not

C program to validate whether matrix is sparse matrix or not

C program to validate whether matrix is dense matrix or not

C program to generate string as matrix diagonal characters using two dimesional array

C Program to find number of weeks, months and years from days

C Program To Implement Linked List and Operations

C Program To Implement Sorted Linked List and Operations

C Program to Reverse the Linked List

C Program to Stack and Operations using Linked List

C Program to Queue and Operations using Linked List

C Program to calculate multiplication of two numbers using pointers

C Program To Calculate Median

C Program To Calculate Standard Deviation

C Program For Fahrenheit To Celsius Conversion

C Program To Calculate Average

C Program For Quadratic Equations

C Program To Check Character Type

C Program To Find Largest Of Three Values

C Program To Find Max Value In Array

C Program to Find Min Value In Array

C Program to Print Multiplication Table

C Program for Frequency Counting

C Program to read a line of text

C Program To Find ASCII Value For Any Character

C Program To Find A Character Is Number, Alphabet, Operator, or Special Character

C Program To Find Reverse Case For Any Alphhabet using ctype functions

C Program To Find Number Of Vowels In Input String

C Program Pointers Example Code

C Program To Find Leap Year Or Not

C Program To Swap Two Integers Using Call By Reference

C Program To Swap Two Integers Without Using Third Variable

C Program To List Prime Numbers Upto Limit

C Program To List Composite Numbers Upto Limit

C Program To Calculate Compound Interest

C Program To Calculate Depreciation Amount After of Before Few Years

C Program To Calculate Profit Percentage

C Program To Calculate Loss Percentage

C Program To Find String Is Polindrome Or Not

C Program To Find Factorial of a Number

C Program To Check Number is a Polindrome or Not

C Program To Generate Random Integers

C Program To Generate Random Float Numbers

C Program to find Square Root of a Number

C Program to find Area of a Rectangle

C Program to find Perimeter of a Rectangle

C Program to find Area of a Square

C Program to find Area of a Triangle

C Program to find Area of a Parallelogram

C Program to find Area of a Rhombus

C Program to find Area of a Trapezium

C Program to find Area of a Circle and Semi-circle

C Program to find Circumference of a Circle and Semi-circle

C Program to find length of an arc

C Program to find Area of a Sector

C Program to find string length for list of strings

C Program to find the character at index in a string

C Program to compare characters

C Program to find eligible to vote or not

C Program to get system current date and time on linux

C Program to get positive number

C Program to implement calculator

C Program to implement banking system

C Program to find sum of number

C Program for array traversal using pointers

C Program for array traversal in reverse order using pointers

C Program to find particular element occurrences count in array

C Program to find even elements occurrences count in array

C Program to find odd elements occurrences count in array

C program to find week day in word from week day in number using two dimentsional array

C program to find month in word from month in number using pointers

C program to compute PMT for a loan

C program to compute EMI and round up using floor

C program to compute EMI and round up using ceil

C program to compute the EMI table with Interest, Principal and Balance

C program to get multiple line of string

C program to find nth element in array using pointers

C program to compute the volume of a cube

C program to compute the volume of a box

C program to compute the volume of a sphere

C program to compute the volume of a triangular prism

C program to compute the volume of a cylinder

C Program to Compute Perimeter of Square

C Program to compute the perimeter of triangle

C Program to compute the discount rate

C Program to compute the sales tax

C program to add, delete, search a record or show all using binary file

C program to add, delete, search a record or show all using text file

Privacy Policy  |  Copyrightcopyright symbol2020 - All Rights Reserved.  |  Contact us   |  Report website issues in Github   |  Facebook page   |  Google+ page

Email Facebook Google LinkedIn Twitter
^