VOOZH about

URL: https://www.geeksforgeeks.org/dsa/sort-linked-list-already-sorted-absolute-values/

⇱ Sort linked list which is already sorted on absolute values - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Sort linked list which is already sorted on absolute values

Last Updated : 23 Jul, 2025

Given a linked list that is sorted based on absolute values. Sort the list based on actual values.

Examples:  

Input : 1 -> -10 
output: -10 -> 1

Input : 1 -> -2 -> -3 -> 4 -> -5 
output: -5 -> -3 -> -2 -> 1 -> 4 

Input : -5 -> -10 
Output: -10 -> -5

Input : 5 -> 10 
output: 5 -> 10

Source : Amazon Interview

Recommended Practice

A simple solution is to traverse the linked list from beginning to end. For every visited node, check if it is out of order. If it is, remove it from its current position and insert it at the correct position. This is the implementation of insertion sort for linked list and the time complexity of this solution is O(n*n).

A better solution is to sort the linked list using merge sort. Time complexity of this solution is O(n Log n).

An efficient solution can work in O(n) time. An important observation is, all negative elements are present in reverse order. So we traverse the list, whenever we find an element that is out of order, we move it to the front of the linked list. 

Below is the implementation of the above idea. 


Output
Original list :
0 -> 1 -> -2 -> 3 -> 4 -> 5 -> -5

Sorted list :
-5 -> -2 -> 0 -> 1 -> 3 -> 4 -> 5

Time Complexity: O(N)
Auxiliary Space: O(1)

Comment