Error with array'int [max-min+1] type is not assignable

前端 未结 0 1575
既然无缘
既然无缘 2021-01-24 08:50
void countingSort(int a[], int size, int max, int min)
{   
int temp[max - min + 1];
for (int i = 0; i < size; i++)
    temp[a[i] - min] = temp[a[i] - min] + 1; //Cou         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题