Search code examples
pythonvb.netheuristics

Programming with Heuristics?


Could I please have some ideas for a project utilising Heuristics

Thankyou in advance for your help


Solution

  • At first you need to make yourself clear what a heuristic is. See for example wikipedia

    Heuristic ( /hjʉˈrɪstɨk/; or /hyoo-ris-tik/; Greek: "Εὑρίσκω", "find" or "discover") refers to experience-based techniques for problem solving, learning, and discovery.

    Moreover what means heuristic in computer science:

    In computer science, a heuristic is a technique designed for solving a problem quicker when classic methods are too slow, or for finding an approximate solution when classic methods fail to find any exact solution...

    This means it has nothing to do with a programming language. Ok, let us go step by step:

    1.) At first you have a problem.

    2.) Then you have to think for a solution of this problem. Maybe there exists a fast and exact algorithm. Then there is no need to use a heuristic. If there is no algorithm or any known algorithm is somehow bad (for example in the running time) you can think about to use a heuristic to solve.

    2.) And then at the end you can think about which programming language is the most appropriate to implement the solution for your problem.

    Of course it depends on you and your taste too and also on the problem you want to solve. Python and/or VB.NET are great choices for a big classes of problems.