Search

June 20, 2010
General »
...if (cmp(data[i + gap], data[i]))
            {
                swap(data[i], data[i + gap]);
                swaps = true;
            }
        }
    }
}
June 20, 2010
General »
...version, the algorithm is very simple:


def swap(alist, i, j):
    alist[i], alist[j...
June 16, 2010
General »
Certain functions (notably swap) must make sure that there's no mutual aliasing between two...
June 16, 2010
General »
...seeking for a way to gently exchange/swap the normal GC memory allocator through a...
June 14, 2010
Genel »
...yine sanırım std.algorithm'den swap işlevi kullanılmış. Eğer swap OyunKartı dizisini kabul ederse onu...
June 06, 2010
c++.stlsoft »
...C++0x) support for VC++ 10
 * added swap() method to stlsoft::basic_shim_string
 * added...
June 04, 2010
Issues »
...store.front;
        enforce(_length);
        if (_length > 1)
            swap(_store.front, _store[_length - 1]);
        --_length;
        percolateDown...
June 01, 2010
General »
...would add confusion when a person would swap from a D project to a C...
May 31, 2010
General »
...store.front;
        enforce(_length);
        if (_length > 1)
            swap(_store.front, _store[_length - 1]);
        --_length;
        percolateDown...
May 31, 2010
General »
...void pop()
    {
        enforce(_length);
        if (_length > 1)
        swap(_store.front, _store[_length - 1]);
        --_length;
        percolateDown...
119 120 121 122 123 124 125 126 127 128 129
Next ›   Last »