Skip to content

Added sort list Algorithm #2882

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Jan 19, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes(#2450)
  • Loading branch information
siddhant2002 committed Dec 20, 2021
commit a192de6811d0c54ef057e251e8c51432d89c6584
301 changes: 301 additions & 0 deletions src/main/java/com/thealgorithms/sorts/LinkList_Sort.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,301 @@
/** Author : Siddhant Swarup Mallick
* Github : https://github.com/siddhant2002
*/

/** Program description - To sort the LinkList as per sorting technique */

package com.thealgorithms.sorts;

public class LinkList_Sort {
public static void main(String args[])
{
int a[] = {89,56,98,123,26,75,12,40,39,68,91};
// Array is taken as input
int ch=1;
// Choice is choosed as 1(Merge sort)
switch(ch)
{
case 1:
Task nm=new Task();
Node start=null,prev=null,fresh,ptr;
for(int i=0;i<a.length;i++)
{
// New nodes are created and values are added
fresh=new Node();
fresh.val=a[i];
if(start==null)
start=fresh;
else
prev.next=fresh;
prev=fresh;
}
start=nm.sort_by_mergesort(start);
// method is being called
for(ptr=start;ptr!=null;ptr=ptr.next)
{
System.out.print(ptr.val+" ");
// iterating the linklist
}
break;

case 2:
Node start1=null,prev1=null,fresh1,ptr1;
for(int i=0;i<a.length;i++)
{
// New nodes are created and values are added
fresh1=new Node();
fresh1.val=a[i];
if(start1==null)
start1=fresh1;
else
prev1.next=fresh1;
prev1=fresh1;
}
Task1 kk=new Task1();
start1=kk.sort_by_insertionsort(start1);
// method is being called
for(ptr1=start1;ptr1!=null;ptr1=ptr1.next)
{
System.out.print(ptr1.val+" ");
// iterating the linklist
}
break;

case 3:
Task2 mm=new Task2();
Node start2=null,prev2=null,fresh2,ptr2;
for(int i=0;i<a.length;i++)
{
// New nodes are created and values are added
fresh2=new Node();
fresh2.val=a[i];
if(start2==null)
start2=fresh2;
else
prev2.next=fresh2;
prev2=fresh2;
}
start2=mm.sort_by_heapsort(start2);
// method is being called
for(ptr2=start2;ptr2!=null;ptr2=ptr2.next)
{
System.out.print(ptr2.val+" ");
// iterating the linklist
}
break;

default:
// default is used incase user puts a unauthorized value
System.out.println("Wrong choice");
}
// Switch case is used to call the classes as per the user requirement
}
/**
* OUTPUT :
* Input - {89,56,98,123,26,75,12,40,39,68,91} is same for all the 3 classes
* Output: [12 26 39 40 56 68 75 89 91 98 123] is same for all the 3 classes
* 1st approach Time Complexity : O(n logn)
* Auxiliary Space Complexity : O(n)
* 2nd approach Time Complexity : O(n^2)
* Auxiliary Space Complexity : O(n)
* 3rd approach Time Complexity : O(n logn)
* Auxiliary Space Complexity : O(n)
*/
}
class Node
{
int val;
Node next;
// Node class for creation of linklist nodes
}
class Task
{
static int a[];
public Node sort_by_mergesort(Node head)
{
if(head==null||head.next==null)
return head;
int c=count(head);
a=new int[c];
// Array of size c is created
int i=0;
for(Node ptr=head;ptr!=null;ptr=ptr.next)
{
a[i++]=ptr.val;
}
// values are stored in the array
i=0;
task(a,0,c-1);
// task method will be executed
for(Node ptr=head;ptr!=null;ptr=ptr.next)
{
ptr.val=a[i++];
// Value is stored in the linklist after being sorted
}
return head;
}
int count(Node head)
{
int c=0;
Node ptr;
for(ptr=head;ptr!=null;ptr=ptr.next)
{
c++;
}
return c;
// This Method is used to count number of elements/nodes present in the linklist
// It will return a integer type value denoting the number of nodes present
}
void task(int n[], int i, int j)
{
if(i<j)
{
int m=(i+j)/2;
task(n,i,m);
task(n,m+1,j);
task1(n,i,m,j);
// Array is halved and sent for sorting
}
}
void task1(int n[], int s, int m, int e)
{
int i=s,k=0,j=m+1;
int b[]=new int[e-s+1];
while(i<=m&&j<=e)
{
if(n[j]>=n[i])
b[k++]=n[i++];
else
b[k++]=n[j++];
}
// Smallest number is stored after checking from both the arrays
while(i<=m)
{
b[k++]=n[i++];
}
while(j<=e)
{
b[k++]=n[j++];
}
for(int p=s;p<=e;p++)
{
a[p]=b[p-s];
}
}
// The method task and task1 is used to sort the linklist using merge sort
}
class Task1
{
public Node sort_by_insertionsort(Node head) {
if(head==null||head.next==null)
return head;
int c=count(head);
int a[]=new int[c];
// Array of size c is created
a[0]=head.val;
int i;
Node ptr;
for(ptr=head.next,i=1;ptr!=null;ptr=ptr.next,i++)
{
int j=i-1;
while(j>=0&&a[j]>ptr.val)
{
// values are stored in the array
a[j+1]=a[j];
j--;
}
a[j+1]=ptr.val;
}
i=0;
for(ptr=head;ptr!=null;ptr=ptr.next)
{
ptr.val=a[i++];
// Value is stored in the linklist after being sorted
}
return head;
}
static int count(Node head)
{
Node ptr;
int c=0;
for(ptr=head;ptr!=null;ptr=ptr.next)
{
c++;
}
return c;
// This Method is used to count number of elements/nodes present in the linklist
// It will return a integer type value denoting the number of nodes present
}
// The method task and task1 is used to sort the linklist using insertion sort
}
class Task2
{
static int a[];
public Node sort_by_heapsort(Node head) {
if(head==null||head.next==null)
return head;
int c=count(head);
a=new int[c];
// Array of size c is created
int i=0;
for(Node ptr=head;ptr!=null;ptr=ptr.next)
{
a[i++]=ptr.val;
// values are stored in the array
}
i=0;
task(a);
for(Node ptr=head;ptr!=null;ptr=ptr.next)
{
ptr.val=a[i++];
// Value is stored in the linklist after being sorted
}
return head;
}
int count(Node head)
{
int c=0;
Node ptr;
for(ptr=head;ptr!=null;ptr=ptr.next)
{
c++;
}
return c;
// This Method is used to count number of elements/nodes present in the linklist
// It will return a integer type value denoting the number of nodes present
}
void task(int n[])
{
int k=n.length;
for(int i=k/2-1;i>=0;i--)
{
task1(n,k,i);
}
for(int i=k-1;i>0;i--)
{
int d=n[0];
n[0]=n[i];
n[i]=d;
task1(n,i,0);
// recursive calling of task1 method
}
}
void task1(int n[], int k, int i)
{
int p=i;
int l=2*i+1;
int r=2*i+2;
if(l<k&&n[l]>n[p])
p=l;
if(r<k&&n[r]>n[p])
p=r;
if(p!=i)
{
int d=n[p];
n[p]=n[i];
n[i]=d;
task1(n,k,p);
}
}
// The method task and task1 is used to sort the linklist using heap sort
}