Connecting Tech Pros Worldwide Forums | Help | Site Map

Sorting Multidimensional Array

Index
Guest
 
Posts: n/a
#1: May 27 '06
Hi, I have a 4 dimensional array and I want to sort it by the first two
columns emulating an ORDER BY clause to some extent.Any suggestion?

The original Array is:

Row1-> 4 8 2 9
Row2-> 4 5 5 3
Row3-> 3 9 8 7
Row4-> 8 2 4 8

The sorted array should look:

Row1-> 3 9 8 7
Row2-> 4 5 5 3
Row3-> 4 8 2 9
Row4-> 8 2 4 8

In fact the columns upon which the sorting is to be done is also
dynamic.
Please provide me some efficient algo or implementation.The data to be
handled is rather huge.So efficiency is a vital requirement.
Thanks.


Ian Collins
Guest
 
Posts: n/a
#2: May 27 '06

re: Sorting Multidimensional Array


Index wrote:[color=blue]
> Hi, I have a 4 dimensional array and I want to sort it by the first two
> columns emulating an ORDER BY clause to some extent.Any suggestion?
>
> The original Array is:
>
> Row1-> 4 8 2 9
> Row2-> 4 5 5 3
> Row3-> 3 9 8 7
> Row4-> 8 2 4 8
>
> The sorted array should look:
>
> Row1-> 3 9 8 7
> Row2-> 4 5 5 3
> Row3-> 4 8 2 9
> Row4-> 8 2 4 8
>
> In fact the columns upon which the sorting is to be done is also
> dynamic.
> Please provide me some efficient algo or implementation.The data to be
> handled is rather huge.So efficiency is a vital requirement.[/color]

Store your data in a struct and define a < operator for the struct based
on your sort rules. Then shove the data structs into a set.

Something like:

struct Data
{
int a, b, c, d, e;

bool operator<( const Data& ) const;
};

bool Data::operator<( const Data& data ) const
{
return (a < data.a) ? true : (a == data.a) ? data.b > b : false;
}

If you want greater efficiency, create a smart pointer type for Data
with its own < operator and put these in the set.

--
Ian Collins.
Ian Collins
Guest
 
Posts: n/a
#3: May 27 '06

re: Sorting Multidimensional Array


Ian Collins wrote:[color=blue]
>
> If you want greater efficiency, create a smart pointer type for Data
> with its own < operator and put these in the set.
>[/color]
I should have added - be sure to profile both options and don't bother
with the second unless you realy have to!

--
Ian Collins.
Roland Pibinger
Guest
 
Posts: n/a
#4: May 27 '06

re: Sorting Multidimensional Array


On 26 May 2006 17:45:46 -0700, "Index" <kasturi.chatterjee@gmail.com>
wrote:[color=blue]
>Hi, I have a 4 dimensional array and I want to sort it by the first two
>columns emulating an ORDER BY clause to some extent.Any suggestion?
>
>The original Array is:
>
>Row1-> 4 8 2 9
>Row2-> 4 5 5 3
>Row3-> 3 9 8 7
>Row4-> 8 2 4 8
>
>The sorted array should look:
>
>Row1-> 3 9 8 7
>Row2-> 4 5 5 3
>Row3-> 4 8 2 9
>Row4-> 8 2 4 8
>
>In fact the columns upon which the sorting is to be done is also
>dynamic.
>Please provide me some efficient algo or implementation.The data to be
>handled is rather huge.So efficiency is a vital requirement.
>Thanks.[/color]

It's not possible to use qsort or std::sort directly because arrays
are not first class objects in C/C++. You should use a struct wrapper
for your Rows as vaguely indicated by Ian Collins.

Best wishes,
Roland Pibinger
Ian Collins
Guest
 
Posts: n/a
#5: May 27 '06

re: Sorting Multidimensional Array


Roland Pibinger wrote:[color=blue]
>
> It's not possible to use qsort or std::sort directly because arrays
> are not first class objects in C/C++. You should use a struct wrapper
> for your Rows as vaguely indicated by Ian Collins.
>[/color]
vaguely?

"Store your data in a struct and define a < operator for the struct
based on your sort rules."

I guess I could have shouted :)

--
Ian Collins.
Phlip
Guest
 
Posts: n/a
#6: May 27 '06

re: Sorting Multidimensional Array


Ian Collins wrote:
[color=blue]
> Roland Pibinger wrote:[color=green]
>>
>> It's not possible to use qsort or std::sort directly because arrays
>> are not first class objects in C/C++. You should use a struct wrapper
>> for your Rows as vaguely indicated by Ian Collins.
>>[/color]
> vaguely?[/color]

Arrays are not first class objects?

template<class T, const size_t extent>
size_t
extent_of(T(&)[extent]) { return extent; }

RP meant that arrays are tricky to use as first class objects, and that
those sorters require a wrapper...

--
Phlip
http://c2.com/cgi/wiki?ZeekLand <-- NOT a blog!!!


Roland Pibinger
Guest
 
Posts: n/a
#7: May 28 '06

re: Sorting Multidimensional Array


On Sat, 27 May 2006 21:59:35 GMT, "Phlip" <phlipcpp@yahoo.com> wrote:[color=blue]
>Arrays are not first class objects?
>
> template<class T, const size_t extent>
> size_t extent_of(T(&)[extent]) { return extent; }[/color]

I don't know what you want to demonstrate. The original problem,
sorting a 2-dimensional array (preferably with Standard facilities
like sort or qsort), is still unresolved in the currend thread.

Best regards,
Roland Pibinger
Closed Thread