我创建了一个从字符串中删除多余空格的程序。
void removeDuplicateSpaces(char **c){ //a-b---c
char *a=*c;
char *b=malloc(sizeof(char)*strlen(*c)); <-- allocation
int i=0,nf=0,space=0;
for(;a[i]!='\0';i++){
if(a[i] != ' '){ //a-b-
if(space>1){
b[nf]=a[i];
nf++;
space=0;
}else{
b[nf]=a[i];
nf++;
}
}else{
space++;
if(space==1 && i!=0){
b[nf]=' ';
nf++;
}
}
}
b[i]='\0';
*c=b;
}
int main(void) {
char *a=" Arista is hiring from ISM Dhanbad";
removeDuplicateSpaces(&a); //function prototype can't be changed.
printf("%s",a); // ? where to deallocate.
return 0;
}
它工作正常。但问题是我应该在哪里释放内存,在removeDuplicateSpaces()
函数中分配。printf
如果我在in之后添加 free 语句,main
那么它会使我的程序崩溃(signal 6 abort
)。那么正确的方法是什么?
原始问题
#include<stdio.h>
main()
{
char *foo = " Arista is hiring from ISM Dhanbad";
void removeDuplicateSpaces(foo);
printf("%s\n", foo);
}
上面给出了代码。编写一个函数removeDuplicateSpaces
以删除给定字符串中的多余空格。
例如:(为清楚起见,“-”表示空格)
Input String : (without quotes)
“—-Arista——is—-hiring—-from-ISM–Dhanbad”
Output String :
“Arista-is-hiring-from-ISM-Dhanbad”