Question: Problems 1 MUST be solved in place, i.e. you cannot use other arrays to copy parts of the given array. You can use only a
Problems 1 MUST be solved in place, i.e. you cannot use other arrays to copy parts of the given array. You can use only a few extra variables
Use comments to explain well your algorithms to solve the given problem and an estimate of how many operations (such as comparisons, swaps, additions etc.) your algorithm performs

Program 1: Readjusting an ARRAY You're given an unsorted array of n integers A. You need to readjust the array so that all the even numbers appear first, followed by all the odd numbers. For instance, if A-13,5,4, 6,1,7,8], one possible correct readjustment is [4,6,8,3,5,1,7]. The final order is not important, but all the even numbers must precede all the odd numbers. Do not make any assumption on how many odd or even numbers there are in A. The array A, for instance, might contain just odd numbers or just even numbers Hint: Another way of looking at the problem is the following: given an unsorted array whose elements are all 0 (zeros) or 1 (ones) sort the array so that all the 0's appear first, followed by all the 1's
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
