我的代码是这样的:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
char ** djiksin(char ** inp){
}
int evaluation(char ** rpn){
}
void printarr(char arr[]){
int i=0;
while(arr[i] != '\0'){
printf("%c",arr[i]);
++i;
}
}
int main(){
int i = 0,k = 0,j=0;
char a[201] = {'\0'};
char ** strinp;
fgets(a,201,stdin);
while(a[i] != '\0'){
if(a[i] == '(' || a[i] == ')' || a[i] == '*'|| a[i] == '+'|| a[i] == '^'|| a[i] == '~'|| a[i] == '/'|| a[i] == '-'){
j = 0;
k = k+1;
strinp[k][j] = a[i];
k = k + 1;
}else if(a[i] == ' '){
k = k + 1;
j = 0;
}else{
strinp[k][j] = a[i];
j = j+1;
}
++i;
}
printarr(a);
return 0;
}
到目前为止,代码的目的是采用一个数学公式,并将其格式化为分流场算法的使用。在我看来,我试图让每个操作符和操作数分成单独的字符串。 最后,strinp应该给出一个字符串数组,我可以在之前声明的函数中使用它。
但每次我尝试编译并运行程序进行测试后,我输入窗口会出现错误&#34;程序停止工作&#34;。关闭错误后,它会在命令提示符下输出:Process exited after 3.871 seconds with return value 3221225477
当我对while
中的main
部分发表评论时,代码可以正常输出。
有什么想法吗?
答案 0 :(得分:1)
char ** strinp;
...
strinp[k][j] = a[i];
strinp
是一个未初始化的指针。您没有为它分配任何内存,并且没有它指向有用的内存。取消引用无效指针是导致崩溃的原因。
答案 1 :(得分:0)
您没有为strinp变量分配内存。
char ** strinp = (char **)malloc(sizeof(char*) * 20);
for(int i = 0; i < 20; i++)
{
strinp[i] = (char *)malloc(sizeof(char) * 20);
}
你需要的是这样的东西。当然,您需要根据需要更改分配大小。
答案 2 :(得分:0)
正如其他人所说,在尝试为srtinp pionter赋值之前,你必须分配内存。
/*
compile ::: $ gcc test.c -o test
run ::: $ ./test
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
void
printarr(char arr[])
{
int i=0;
while(arr[i] != '\0'){
printf("%c",arr[i]);
++i;
}
}
int
main(int argc, char **argv)
{
int i = 0,k = 0,j=0;
char a[201] = {'\0'};
char ** strinp;
printf("Enter a string\n");
fgets(a,201,stdin);///get input from user
/// obtain length of input
int x=-1;
for (x=0 ; a[x]!='\0' && x<=200;x++){
;
}
x--;
printf("lenght of a: %d\n",x);///len a is x
/// allocate sufficient amount of Memory
strinp = malloc(sizeof(char*) * x);
for(int i=0;i<x; i++)
strinp[i] = malloc(sizeof(char)*x);
//~ i=0;
//~ j=0;
//~ k=0;
/// do this
///seem to erase space from input
while(a[i+1] != '\0'){
//printf("in while1\n");
if(a[i] == '(' || a[i] == ')' || a[i] == '*'|| a[i] == '+'|| a[i] == '^'|| a[i] == '~'|| a[i] == '/'|| a[i] == '-'){
j = 0;
k = k+1;
//printf("in while2\n");
strinp[k][j] = a[i];
//printf("%c,%c\n",a[i],strinp[k][j]);
k = k + 1;
//printf("%c\n",a[i]);
}else if(a[i] == ' '){
k = k + 1;
j = 0;
// printf("%c\n",a[i]);
}else{///if alphabet or number
//printf("in while 3\n");
strinp[k][j] = a[i];
//printf("%c,%c\n",a[i],strinp[k][j]);
j = j+1;
}
++i;
}
printf("array:");
printarr(a);///print array of a[]
//printf("end\n");
///print strinp
printf("pointer:");
for(int i=0;i<x;i++)
for(int j=0;j<x;j++)
printf("%c",strinp[i][j]);
printf("\n");
///free aloocated memory
for(i=0;i<x; i++)
free(strinp[i]);
free(strinp);
return 0;
}