cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
How could i perform sorting in 2d array
How could i perform sorting in 2d array
Jan 14, 2012 at 4:44am UTC
jahanzaib ali khan Iiu
(19)
How could i perform sorting in 2d array.For eg 2d array is
int arr[2][4]={(23 34 45 5),(22 44 55 54)}
Please help me i need urgent help.....
Jan 14, 2012 at 7:03am UTC
hamsterman
(4538)
Sorting is only obvious in 1d arrays.
There is a billion ways to sort a 2d array, eg. as if it was one long 1d array, or each line separately, or each column separately.
You need to say what kind of state you're trying to reach.
Last edited on
Jan 14, 2012 at 7:03am UTC
Topic archived. No new replies allowed.