Skip to main content
✨ Run your entire business in one platform — CRM, HR, Accounting, Projects & more. Start Free Trial →

Move All Negative Elements to End of Array

Move All Negative Elements to End of Array
By: Dev.to Top Posted On: March 24, 2026 View: 0
Move All Negative Elements to End of Array Problem Statement Given an array of integers, move all negative elements to the end of the array while maintaining the order of positive elements. Examples Input arr = [1, -1, 3, 2, -7, -5, 11, 6] Output [1, 3, 2, 11, 6, -1, -7, -5] Input arr = [-5, 7, -3, -4, 9, 10] Output [7, 9, 10, -5, -3, -4] Approach 1 Using Extra Space Create a new array to store positive and negative elements separately. Steps 1 Traverse the array and store positive elements 2 Traverse again and store negative elements 3 Combine both Code ```python id="neg1" def moveNegatives(arr): result = [] for num in arr: if num >= 0: result.append(num) for num in arr: if num < 0: result.append(num) return result --- ## Approach 2 In Place Method Rearrange elements within the same array. --- ### Steps 1 Initialize index to track position 2 Traverse array 3 If element is positive swap it with current index 4 Increment index --- ### Code ```python id="neg2" def moveNegatives(arr): j = 0 for i in range(len(arr)): if arr[i] >= 0: arr[i], arr[j] = arr[j], arr[i] j += 1 return arr Explanation The idea is to push all positive elements to the front and shift negative elements towards the end. The relative order of positive elements is maintained. Expected Output Input arr = 1, -1, 3, 2, -7,
Share:

Tags:
#0 

Read this on Dev.to Top Header Banner

Want to run a more efficient business?

Mewayz gives you CRM, HR, Accounting, Projects & eCommerce — all in one workspace. 14-day free trial, no credit card needed.

Try Mewayz Free →

Comments

Power your business with Mewayz ERP

All-in-one platform: CRM, HR, Accounting, Project Management, eCommerce & more. 14-day free trial.

Start Your Free Trial →

No credit card required · Cancel anytime · 131+ modules

Contact Us
Follow Us
Site Map
Get Site Map
About

Mewayz News brings you the latest breaking news, in-depth analysis, and trending stories from around the world. Covering politics, technology, business, sports, entertainment, and more — updated every hour, 24/7.

Mewayz Network

Mewayz App Stream Watch TV Music Games Tools Calculators Dictionary Books Quotes Recipes Photos Fonts Icons Study Papers Resume Templates Compare Reviews Weather Trading Docs Draw Paste Sign eBooks AI Learn Currency Convert Translate Search QR Code Timer Typing Colors Fitness Invoice Directory Social Seemless