PLEASE HELP ME!! ARRAY SORTING

Mar 17, 2008 at 3:43pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <iostream.h>
#include <sstream.h>
#include <cmath>
#include <ctype.h>



#include <iostream>
using namespace std;

int main()
{
  srand(clock());
   // declaring 
    float MyArray[5];
    
   // 
  for(int i=0;i<5;i++)
  {    cout << "Enter the element :  ";     cin >> MyArray[i];}
    
    system("cls");
    
    cout << "printing array  "  "\n\n";
    for(int i=0;i<5;i++)
      { cout << "Element " <<i<<" is: "<<    MyArray[i]<<"\n\n";}

    
// the random numbers


{
   // declaring 
    float Array[10];
    
   for(int i=0;i<10;i++)   
     	Array[i]=rand() % 10;  
       
    cout << "printing array  "  "\n\n";
    for(int i=0;i<10;i++)
  { cout << "Element  " <<i<<" is: "<<    Array[i]<<"\n\n";}
    
    
    
    
////sorting the area
 
    
   if (int
    
    
    
    
    return 0;
}
}




HERES WHAT I NEED TO DO CAN YOU GUYS HELP ME... I DONT KNOW HOW TO START


Sort and print the array in the following fashion:

The odd numbers must go to the front of the array and the even numbers go to the end of the array.
Now sort the odd numbers in ascending order at the beginning of the array and sort the even numbers in descending order following the odd numbers.


Mar 17, 2008 at 10:14pm
If your description is talking about even and odd numbers, I'd assume they mean integers, not floats.

You might try making 2 additional arrays. Make one hold the even numbers, make the other hold the odd values. You'd go through the original list, get the even and odd numbers into the right array, then sort each array separately. Finally, rebuild the original array.
Topic archived. No new replies allowed.