Search:

Type: Posts; User: Taturana182

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    2,225

    Perfect stairs problem

    On the test that I'm studying for I have a problem to solve but I don't know how to solve that. The problem is the following:

    I have various piles of square stones and I need to organize that to...
  2. Replies
    19
    Views
    29,331

    @tabstop Hum, ok. But on a test I'm studying...

    @tabstop

    Hum, ok. But on a test I'm studying for, there's a problem such that: The user inputs data telling me the number of points, the connections between these points (and it's distance) then I...
  3. Replies
    19
    Views
    29,331

    @rodrigorules Thank you for the link, it will...

    @rodrigorules

    Thank you for the link, it will help me...

    @tabstop

    Hum, I think I was wrong, it doesn't solve the TSP... But what it solves then? In wikipedia it says:
  4. Replies
    19
    Views
    29,331

    Travelling salesman problem algorithm

    #define OO 2000000;

    int tsp(int **adjMatrix, int numberPoints)
    {
    for (int i = 0; i < numberPoints; i++)
    for (int j = 0; j < numberPoints; j++)
    for (int k = 0; k < numberPoints; k++)...
Results 1 to 4 of 4