Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8755683
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:54:08+00:00 2026-06-13T13:54:08+00:00

Design a linear algorithm to rearrange the elements of a given array of n

  • 0

Design a linear algorithm to rearrange the elements of a given array of n elements so that all its negative numbers precede any zeroes, and any zeroes precede any positive numbers. It should also be space efficient so that it doesn’t require more than a constant amount of additional space.

Everything I am thinking of is much bigger than O(n), and would love some tips/hints/help/java code!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T13:54:10+00:00Added an answer on June 13, 2026 at 1:54 pm

    Help? Hint: Quicksort’s partition part with pivot as 0. See this Wikipedia article, look for in-place version.


    I just realized if you implement teh exact version given in the link above it may not help if you have dupes of zero. My statement is still true that you need to use partition part of Quicksort, but the partition is going to be done by Dutch National Flag problem or three way partitioning. Here is the pseudo code for you

    //assume index based 1
    A[1..n]
    p = 0
    q = n+1
    i = 1
    while i < q if A[i] < 0 swap(i, ++p) else if A[i] > 0 swap(i, --q) else i++

    Time complexity:    O(n)
    Space complexity: O(1)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Design an algorithm that, given a list of n elements in an array, finds
Design an algorithm to find all pairs of integers within an array which sum
I have an Activity that has all the display elements added dynamically. Theres no
Given an integer x and a sorted array a of N distinct integers, design
hi all i need to design view layout between two linear layout. i see
My design requires that I kill the get_configuration activity (Activity1) once the second_activity is
Was: Design by contract: predict methods needed, discipline yourself and deal with code that
A design question: I'd like to build a Windows service that executes different commands
I was making a new design for my website. I thought that I should
I have three buttons in my Actvity inside Linear Layout. Here i wish all

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.