How to figure out "progress" while sorting?

Posted by Mehrdad on Stack Overflow See other posts from Stack Overflow or by Mehrdad
Published on 2012-12-16T04:42:40Z Indexed on 2012/12/16 5:04 UTC
Read the original article Hit count: 126

Filed under:
|
|
|

I'm using stable_sort to sort a large vector.

The sorting takes on the order of a few seconds (say, 5-10 seconds), and I would like to display a progress bar to the user showing how much of the sorting is done so far.

But (even if I was to write my own sorting routine) how can I tell how much progress I have made, and how much more there is left to go?

I don't need it to be exact, but I need it to be "reasonable" (i.e. reasonably linear, not faked, and certainly not backtracking).

© Stack Overflow or respective owner

Related posts about c++

Related posts about algorithm