VOOZH about

URL: https://www.geeksforgeeks.org/dsa/given-linked-list-line-segments-remove-middle-points/

⇱ Given a linked list of line segments, remove middle points - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Given a linked list of line segments, remove middle points

Last Updated : 23 Jul, 2025

Given a linked list of coordinates where adjacent points either form a vertical line or a horizontal line. Delete points from the linked list which are in the middle of a horizontal or vertical line.

Examples: 

Input: (0,10)->(1,10)->(5,10)->(7,10)
 |
 (7,5)->(20,5)->(40,5)
Output: Linked List should be changed to following
 (0,10)->(7,10)
 |
 (7,5)->(40,5) 
The given linked list represents a horizontal line from (0,10) 
to (7, 10) followed by a vertical line from (7, 10) to (7, 5), 
followed by a horizontal line from (7, 5) to (40, 5).

Input: (2,3)->(4,3)->(6,3)->(10,3)->(12,3)
Output: Linked List should be changed to following
 (2,3)->(12,3) 
There is only one vertical line, so all middle points are removed.

Source: Microsoft Interview Experience

The idea is to keep track of the current node, next node, and next-next node. While the next node is the same as the next-next node, keep deleting the next node. In this complete procedure, we need to keep an eye on the shifting of pointers and checking for NULL values.

Following are implementations of the above idea. 


Output
Given Linked List: 
(0,10)-> (1,10)-> (3,10)-> (10,10)-> (10,8)-> (10,5)-> (20,5)-> (40,5)-> 
Modified Linked List: 
(0,10)-> (10,10)-> (10,5)-> (40,5)-> 

Time Complexity of the above solution is O(n) where n is a number of nodes in the given linked list.

Auxiliary Space: O(1) because it is using constant space

Exercise: 

The above code is recursive, write an iterative code for the same problem. Please see below for the solution.
Iterative approach for removing middle points in a linked list of line segments 

Comment
Article Tags:
Article Tags: