I was asked this in an interview.
The list looks like this.
a1->bn->a2->bn-1 ... ->an->b1->NULL
Such that, a1 < a2 < ... < an
and
b1 < b2 < ... < bn
The interviewer put following constrains on me:
- You have to sort the list in place, that is you are not allowed to remove the alternate elements of a group of elements into a separate list.
- You have to somehow make use of the pattern that is there in the list than a naive, sorting algorithm.
I could not come up with the solution during the interview and now too. :-(
Edit : Write code in C to sort this singly linked list.
Edit2 : It was also told to me that I can borrow some idea from bubble sort and take advantage of the pattern. But it should not be a "naive" short.
I hate when interviewer puts artificial constrains but hey job is a job :-)
aandbelements? – Marcin May 9 '12 at 10:50