merge sort

About this tag
The merge sort tag on WindowsForum.com covers discussions about sorting algorithms, including comparisons between merge sort and other methods like bubble sort. One thread examines a custom sorting algorithm that uses decreasing intervals, noting its performance improvement over bubble sort. While the tag does not focus exclusively on merge sort, it serves as a resource for developers and IT professionals exploring sorting techniques in programming contexts, particularly those related to Windows or general software development.
  1. Alex Sokolek

    What sort algorithm is this?

    Hi. Does anyone recognize this sort algorithm? BOOL swap; tagFileNode* TempNode; int i, j, diff = 0; for (j = _NodeCount / 2; j > 0; j /= 2) { swap = true; while (swap) { swap = false; for (i = 0; i + j < _NodeCount; ++i) { if (compare(_NodeList[i...
Back
Top