我有一些不确定数量的变量及其计数的排序数组。我需要像这样构建一个字符串:
Attribute[0]: p=2, e=8
我的问题是数组实际上是一个指针,我不想使用固定长度的循环,所以我看到的唯一解决方案是使用数组指针。
void printArray(Node_ptr node){
int count=0; //character count
char *temp= node->attributes; //duplicate attribute array
char cur; //current char
char *outputCat= emalloc(150); //concatenate counts to a single string
strcpy(outputCat, "Attribute %d counts are: ");
qsort(temp, lineCount, sizeof(char), compare); //sort the array
while ((temp) != NULL){
cur= *temp;
++temp;
if (strcmp(&cur, temp)==0) //if characters are same
count++;
else { //build reporting string
strcat(outputCat, &cur);
strcat(outputCat, "= ");
sprintf(outputCat, "%d ", count);
count=0;
}
}
free(outputCat);
}
这里的问题是strcmp(&cur, ++temp)==0
每次都返回 false,即使我在调试器中看到它们的值。正因为如此,else 条件不断被构建,并在多次迭代后引发段错误。
两个问题:
1-strcmp
即使输入相同的值,什么可以使返回非零?2-我可以做些什么来修复代码?