Segregate Odd-Even Problem Statement

In a wedding ceremony at NinjaLand, attendees are blindfolded. People from the bride’s side hold odd numbers, while people from the groom’s side hold even numbers. For the game to start quickly, all the bride’s side people should come first, followed by the groom’s side people, maintaining their original order.

Explanation:

The attendees are represented as a singly linked list, and you need to rearrange the list such that all odd-numbered attendees appear before the even-numbered ones, preserving the order of appearance.

Input:

The first line contains an integer T, the number of test cases.
Each test case consists of a single line of integers representing the linked list, separated by spaces, and terminated by -1.
-1 is not a part of the list.

Output:

For each test case, output the rearranged list with odd numbers first, followed by even numbers, separated by spaces and terminated by -1.
Each test case should be printed on a new line.

Example:

Input:
1
1 4 3 -1
Output:
1 3 4 -1
Explanation:

In the example, the input list is 1 -> 4 -> 3. After rearranging, it becomes 1 -> 3 -> 4, with odd numbers first.

Constraints:

  • 1 <= T <= 10
  • 1 <= N <= 5 * 104
  • 0 <= data <= 104 and data != -1
  • Time Limit: 1 sec
Note:
You don't need to print the output; it has already been handled. Just implement the function.
AnswerBot
4mo

Rearrange a linked list such that odd numbers appear before even numbers, preserving the order of appearance.

  • Iterate through the linked list and maintain two separate lists for odd and even numbers.

  • Me...read more

Help your peers!
Select
Add answer anonymously...

Top Software Developer Interview Questions Asked at Wipro

Q. What is async and await?
Q. What is an operating system?
Q. What are the concepts of Object-Oriented Programming (OOP)?
Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
play-icon
play-icon
qr-code
Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+

Reviews

10L+

Interviews

4 Cr+

Salaries

1.5 Cr+

Users

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter
Profile Image
Hello, Guest
AmbitionBox Employee Choice Awards 2025
Winners announced!
awards-icon
Contribute to help millions!
Write a review
Write a review
Share interview
Share interview
Contribute salary
Contribute salary
Add office photos
Add office photos
Add office benefits
Add office benefits