show/hide this revision's text 2 Sped it up by counting down instead of up.

Trying these snippets out for real on V8, Drew Hall's algorithm runs in 2/3 of the time of nickf's, as predicted. Here's my Javascript translation, incorporating nickf's speed tweaksMaking the loop count down instead of up cuts it to about 59% of the time (though that's more implementation-dependent). Only lightly tested.:

var A = [ /* 100,000 random integers */];

function minmax() {
    var low = A[0]A[A.length-1];
    var high = A[0]A[A.length-1];
    var i, x, y;
    for (i = 1A.length - 3; (y = A[i+1]) !== undefined0 <= i; i +-= 2) {
        y = A[i+1];
        x = A[i];
        if (x < y) {
            if (x < low) {
                low = x;
            }
            if (high < y) {
                high = y;
            }
        } else {
            if (y < low) {
                low = y;
            }
            if (high < x) {
                high = x;
            }
        }
    }
    if ((x i =A[i]) !== undefined) -1) {
        x = A[0];
        if (high < x) {
            high = x;
        } else if (x < low) {
            low = x;
        }
    }
    return [low, high];
}

for (var i = 0; i < 1000; ++i) { minmax(); }

But man, it's pretty ugly.

show/hide this revision's text 1

Trying these snippets out for real on V8, Drew Hall's algorithm runs in 2/3 of the time of nickf's, as predicted. Here's my Javascript translation, incorporating nickf's speed tweaks. Only lightly tested.

var A = [ /* 100,000 random integers */];

function minmax() {
    var low = A[0];
    var high = A[0];
    var i, x, y;
    for (i = 1; (y = A[i+1]) !== undefined; i += 2) {
        x = A[i];
        if (x < y) {
            if (x < low) {
                low = x;
            }
            if (high < y) {
                high = y;
            }
        } else {
            if (y < low) {
                low = y;
            }
            if (high < x) {
                high = x;
            }
        }
    }
    if ((x = A[i]) !== undefined) {
        if (high < x) {
            high = x;
        } else if (x < low) {
            low = x;
        }
    }
    return [low, high];
}

for (var i = 0; i < 1000; ++i) { minmax(); }