top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

When will you sort an array of pointers to list elements, rather than sorting the elements themselves?

+3 votes
426 views
When will you sort an array of pointers to list elements, rather than sorting the elements themselves?
posted Aug 17, 2015 by Mohammed Hussain

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button
"array of pointers to list elements " statement is not clear, so can you give elaborate question more clearly so that it will helpful to answer

Similar Questions
+4 votes

How can we perform Sorting a list of strings without using any built-in sort method?

+1 vote

I am storing color values as an array of 3 floats and want to query for distinct colors. Is there a way to make .distinct look for distinct arrays rather than values within the arrays?

0 votes

Write a c program that rotate elements of an array by the value of configured number "n".
For example:
Input array[ ] = { 2, 3, 5, 6, 8, 9}
value of n = 2
Output array[] = { 5, 6, 8, 9, 2, 3}
I am looking for efficient program.

...