algorithm-c

There are 2 repositories under algorithm-c topic.

  • paxtonproctor/C_Programming_Practice

    This repo will contain all practice programs for C. NOTE: this is merely practice nothing in this will probably be used in the real world.

    Language:C1100
  • BaseMax/NQueensPromisingC

    This is a promising implementation of the n-Queens problem in C. It uses a recursive backtracking algorithm to find all solutions to the n-Queens problem. It is a promising implementation because it uses a heuristic to prune the search tree. The heuristic is to only place a queen in a column if it is not in check with any other queens.

    Language:C20