我一直在尝试将两个数组传递给一个函数,以便我可以比较它们,但是我遇到了如何传递数组并开始比较行的语法问题。我收到错误,如不兼容的指针类型传递给类型const char ????这是我到目前为止的代码......我在顶级排序函数中遇到了麻烦
//
#define MAXROWS 30
#define MAXCOLS 100
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char topsort( char, int, char, int);
int main(int argc, const char * argv[])
{
//array for all of the word's in the file
char list[MAXROWS][MAXCOLS], line[MAXCOLS], constraint[MAXROWS][MAXCOLS];
FILE *list_sort;
int listcols = 0, listrows = 0, concols = 0, conrows = 0;
//open the sequential access file and make sure its found
list_sort = fopen("/Volumes/JENN/cpma stuff/introcompsys/list sort.txt","r");
if(list_sort == NULL){
printf("can't open file");
exit(EXIT_FAILURE);
}
while(fgets(line, sizeof(line), list_sort) != NULL)
{
if(index(line, ',') == NULL){
for(listcols =0; listcols< strlen(line)-1 ;++listcols) {
list[listrows][listcols] = line[listcols];
}
list[listrows][listcols] = '\0';
printf("%s\n", list[listrows]); //print each row of the list to check
++listrows;
}
else{
for(concols =0; concols< strlen(line)-1 ;++concols) {
constraint[conrows][concols] = line[concols];
}
constraint[conrows][concols] = '\0';
printf("%s\n", constraint[conrows]); //print each row of the constraint to
//check
++conrows;
}
}
}
char topsort( char s1[][MAXCOLS], int listrows, char s2[][MAXCOLS], int conrows){
char sorted[MAXROWS][MAXCOLS];
while(the constraint array is not empty){ //pseudocode
int second = char *strchr(s2, ‘,’+ 2);
for(int i = 0; i < listrows ; i++){
for(int j = 0; j < conrows; j++){
strcspn(s2[j][second], s1[i]);
}
}
}
}
答案 0 :(得分:-1)
topsort的多个问题。它不会起作用。
这是个坏主意:
char s1[][MAXCOLS]
指定所有尺寸大小,或使用char **。
这是错误的,原因有几个。
int length = strlen(s2[][]);
你没有给出任何数组索引,你将一个char传递给一个带有char *的函数,你在while循环中使用length并且永远不会改变它。
strlen(&s1)
这是将char * * *传递给期望char *的函数。
strcspn(s2[i], s1[i]);
将两个字符传递给一个带char和char *的函数。另外,你甚至看不到结果。