我的任务要求我使用指针在c编程中重新创建乌龟和野兔种族。到目前为止,这是我想出的。我的代码基本上会打印70行数组,所有数组都分配为0,如果数组中的位置是2或3,即乌龟或野兔所在的位置,并且如果有一个位置,则表示它们根据随机决定的移动发生冲突。我的代码有几个问题。

  • 它按预期运行,但最后它打印出一个错误,指出分段错误(核心已转储)。
  • 我没有告诉过获奖者。
  • 只有我的野兔似乎在随机移动。它们的运动没有规律,而我的乌龟似乎并没有随机运动。它遵循对角线。

  • 这是我的代码:
    #include <stdio.h>
    #include <stdlib.h>
    #include <time.h>
    #define CLASH 1
    #define TORT 2
    #define HARE 3
    
    void moveHare(int *hPtr);
    void moveTortoise(int *tPtr);
    void printCurrentPositions(int *hPtr, int *tPtr);
    int main (void)
    {
        // variables
        static int hare = 0;
        static int tortoise = 0;
        static int *hPtr = &hare;
        static int *tPtr = &tortoise;
        int timer = 0;
    
         srand ( time(NULL) );
         puts("ON YOUR MARK, GET SET\nBANG !!!!!\nAND THEY'RE OFF!!!!!\n");
         puts("HT");
    
        //while the race is not finished
        while (tortoise <= 70 || hare <= 70)
        {
            moveHare(&hare);
            moveTortoise(&tortoise);
            printCurrentPositions(&hare, &tortoise);
            timer++;
            printf("\n");
        }
    
        //if functions if one of them wins
        if (hare > tortoise)
        {
            puts("\nHARE WINS!!!");
            printf("It took %d seconds", timer);
    
    
        }
        else if (tortoise > hare)
        {
            puts("\nTORTOISE WINS");
            printf("It took %d seconds", timer);
        }
    
    }
    
    
    //functions for the Hare's movement
    void moveHare(int *hPtr)
    {
        int randomValue = rand () % 10 + 1;
    
        if (randomValue == 1 || randomValue == 2)
         {
            *hPtr += 0;
         }
         else if (randomValue == 3 || randomValue == 4)
         {
            *hPtr += 9;
         }
         else if (randomValue == 5)
         {
            *hPtr -= 12;
         }
         else if (randomValue>=6 && randomValue <=8)
         {
            *hPtr += 1;
         }
         else if(randomValue>=9)
         {
            *hPtr -= 2;
         }
    }
    
    // function for the Tortoise's movement
    void moveTortoise( int *tPtr ){
    
         int randomValue  = rand() % 10 + 1;
    
         if (randomValue >= 1 && randomValue <=5)
         {
            *tPtr += 3;
         }
         else if(randomValue == 6 || randomValue == 7)
         {
             *tPtr -= 6;
         }
         else if(randomValue >= 8)
         {
            *tPtr += 1;
         }
    
    
    }
    
    //printing their current positions based on the
    void printCurrentPositions(int *hPtr, int *tPtr)
    {
        int Array[70] = {0};
    
        if (*hPtr == *tPtr)
        {
            Array[*hPtr] = CLASH;
        }
        else
        {
    
            Array[*hPtr] = HARE;
            Array[*tPtr] = TORT;
        }
    
    
        for (size_t i = 0; i < 70; i++)
        {
            if (Array[i] == 0)
            {
                printf(" ");
            }
            else if (Array[i] == TORT)
            {
                printf("T");
            }
            else if (Array[i] == HARE)
            {
                printf("H");
            }
            else if (Array[i] == CLASH)
            {
                printf("OUCH!");
            }
    
    
        }
    
    }
    

    最佳答案

    您的函数printCurrentPositions包含一个错误。 Array只有70个元素(Array[0]Array[69]),因此您不能阅读Array[70]for语句的条件应该是i < 70,而不是i <= 70
    此外,该函数不检查*hPtr*tPtr的值。您必须确保它们是非负值并且小于70,以避免超出范围的写入。
    最后,moveharemoveTortoise中使用的某些条件是错误的。条件randomValue>=6 || randomValue <=8randomValue >= 1 || randomValue <=5将始终为true。它们应该是randomValue>=6 && randomValue <=8randomValue >= 1 && randomValue <=5

    08-07 22:26