data structure

  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...
  2. News

    Creating a Database Project for Artificial Intelligence

    The code can be brought down from this git repository: https://github.com/drcrook1/ProjectTeddy/tree/master/TeddyDemoSolution Link Removed - Introduction Link Removed - Visual Studio 2015 Link Removed - Create new Database Project Link Removed - Create Tweets Table Link Removed - Create...
Back
Top