Click here to Skip to main content
Licence 
First Posted 3 Mar 2003
Views 52,998
Bookmarked 18 times

Timing sort algorithm

By | 3 Mar 2003 | Article
Timing fluctuation can limit the usefulness of timing experiments.

Introduction

Timing fluctuation can limit the usefulness of timing experiments. The idea here is to place the algorithm inside a loop and count the number of iterations between ticks.

The reason for using the time function rather then the clock function is because it can be poorly implemented with the result of "missing ticks", and accumulating this over many loops, it will lead to inaccuracy up to 50%. Using the time function and looping in between ticks will decrease the inaccuracy.

Example

time_t start;
start = time(NULL);
vector<long> iterations;

//reps is the nunber of time that the code will loop
iterations.reserve(reps);
    
while(iterations.size() < reps){
        int count = 0;
        do{
            count++;
            copy(A, A+N, B);
            sort(B, B+N);
            //getting end time
            finish = time(NULL);
            //check that the time has changed before
            //going back into loop and increment count 
        }while(start == finish);
        //inserting count value in the vector that indicates the time we 
        //have looped between a tick during time function
        iterations.push_back(count);
        start = finish;
    }

This can then be repeated for several times, so even if the duration between ticks vary, we can select the most accurate.

Output

The output below shows the average result that has been calculated sorting an array of doubles of length 10000 for 10 times.

Sample Image - timing_sort_algorithm.gif

The result is calculated by retrieving the middle value after the vector has been sorted and dividing it by 1000.0 which will give us the milliseconds.

1000.0/iterations[reps/2]

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Emiliano

Web Developer

United Kingdom United Kingdom

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralTime intro PinmemberPesto5:05 5 Mar '03  
GeneralChoice of timer PinmemberRick York6:33 4 Mar '03  
GeneralRe: Choice of timer PinmemberEmiliano6:57 4 Mar '03  
GeneralRe: Choice of timer - CPUTicker PinmemberNeville Franks15:10 5 Mar '03  
GeneralTime is the simplest thing... Pinmemberpeterchen3:31 4 Mar '03  
GeneralRe: Time is the simplest thing... Pinmemberdog_spawn9:39 4 Mar '03  
GeneralHm... PinmemberChopper3:24 4 Mar '03  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 4 Mar 2003
Article Copyright 2003 by Emiliano
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid