Needed help !!!!!!How to sort 2 d vector if given vector is rowwise sorted without using extra space in c++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Needed help !!!!!!How to sort 2 d vector if given vector is rowwise sorted without using extra space in c++

https://code.sololearn.com/c286kYH4uPCB/?ref=app I tried like this but getting error Output should be{{1,2,3}{3,5,6}{6,9,9}} No Extra space means space complexity must be O(1)

26th Apr 2022, 7:40 AM
Srishti Jaiswal
Srishti Jaiswal - avatar
4 Answers
+ 1
Ipang i edited the question ,you can see it
26th Apr 2022, 8:07 AM
Srishti Jaiswal
Srishti Jaiswal - avatar
+ 1
Srishti Jaiswal, Thanks for updating the post with extra details, looks more precise now. I personally think this one is pretty tough, the O(1) goal especially. Let's hear what community says ...
26th Apr 2022, 1:42 PM
Ipang
0
Given this data from your code, what output did you expect? { { 1, 3, 5 }, { 2, 6, 9 }, { 3, 6, 9 } } And what was that "extra space" about? what spaces?
26th Apr 2022, 7:49 AM
Ipang
0
I would do something like the following: 1. sort each row in place - then the first element of each row is the smallest one locally 2. swap rows with columns: swap a[i][j] with a[j][i] 3. sort each row again - then the first element of the first row is the smallest element overall 4. swap rows with columns again 5. repeat You should figure out how many repeats you need to do but in theory at some point you should get all the elements sorted without using any extra space. The time complexity would not be ideal but you cannot have both efficient memory usage and efficient CPU usage.
27th Apr 2022, 8:27 AM
A S Raghuvanshi
A S Raghuvanshi - avatar