二维数组 - 排序|访问冲突读取位置错误|在C.

时间:2013-09-21 15:46:37

标签: c arrays sorting

嘿伙计们我正在尝试完成我的代码但是没有获取值我得到错误信息 当我即将进入54号或60号留置权时。

if(*arr[rows*columns]<num) or printf("Number value %d in a two-dimensional size is:%d\n",num,*arr[num]);

这是错误信息。

Unhandled exception at 0x013137b2 in LB_12.exe: 0xC0000005: Access violation reading location 0xabababab

任务描述和错误msg int下一张图片。 怎么了?如果我想让程序打印值,我必须创建另一个数组并复制值?

Mission discrption and error msg

这是我的代码

#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
void SortArray(int **arr,int rows,int columns,int num);
void freemalloc ( int **arr,int rows);

void main()
{
    int **arr;
    int i,j,rows,columns,num;
    printf("Please enter the size of 2D array(rows ,cols)");
    scanf("%d %d",&rows , &columns);
    arr=(int **)malloc(rows*sizeof(int *)); // Allocate array of pointers
    if(!arr) // Terms - if there is not enough memory,print error msg and exit the program.
        {
            printf("alloc failed\n");
            return ;
        }
    for(i=0; i<rows; i++)
        arr[i]=(int *)malloc(columns*sizeof(int)); // Allocate memory for each row
    printf("Please fill the 2D array\n");
    for(i=0 ; i<rows ; i++)
        {
            for (j=0 ; j<columns ; j++)
            {
                printf("row:%d columns:%d\n", i,j);
                scanf("%d" , &arr[i][j]);
            }
        }

    printf("Please enter a postive number: ");
    scanf("%d",&num);
    SortArray(arr,rows,columns,num);
    freemalloc(arr,rows);

system("pause");
return;
}
void SortArray(int **arr,int rows,int columns,int num)
{
    int i,j,temp; 
    for(i=0 ; i<rows ; i++ ) // Bubble sort for sorting the 2d array
        {
            for(j=0 ; j<i-1 ; j++ )
            {
                if(arr[i][j]>arr[i][j+1])
                {
                    temp=arr[i][j];
                    arr[i][j]=arr[i][j+1];
                    arr[i][j+1]=temp;
                }
            }
        }
    if(*arr[rows*columns]<num)
        {
            printf("No solution,The maximum value is:%d\n",arr[rows*columns]);
        }
    else
    {
        printf("Number value %d in a two-dimensional size is:%d\n",num,*arr[num]);
    }
}
void freemalloc ( int **arr,int rows)
{
    int i;
    for (i=0 ; i<rows ; i++) // Loop for free the array of pointers
    {
            free(arr[i]); // free each seprate row
    }
    free(arr);
}

2 个答案:

答案 0 :(得分:0)

我的猜测是rows * columns大于你分配的内容,这意味着你试图取消引用一个随机指针,导致未定义的行为并导致崩溃。

此外,您永远不会对任何内容进行排序,因为外部循环条件始终为false(尝试将>更改为<)。

答案 1 :(得分:0)

我的赌注是:

printf("Number value %d in a two-dimensional size is:%d\n",num,*arr[num]);

你要一些数字并把它放在变量num中。是什么让你认为数字num是第num行的第一个数字?

此代码可能存在并且可能存在更多问题。 编辑:
*arr[num]从右到左进行评估。 []的优先级高于*运算符 首先是does arr[num]。并且结果是解除引用*(arr[num])。 num被视为一行,所以如果你没有足够的行 - 你就会因为超出数组

而导致内存违规