XOR swap algorithm - Wikipedia, the free encyclopedia void xorSwap (int *x, int *y) { if (x != y) { ...

Please Visit: http://ift.tt/1ajReyV



XOR swap algorithm - Wikipedia, the free encyclopedia

void xorSwap (int *x, int *y) {

if (x != y) {

*x ^= *y;

*y ^= *x;

*x ^= *y;

}

}

http://ift.tt/1pd7k6h

http://ift.tt/1lP2Bsm



XOR swap algorithm - Wikipedia, the free encyclopedia







from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1pd7k6k

via LifeLong Community

No comments:

Post a Comment