我正在编写冒泡排序练习,我必须创建2个源文件。第一个包含主代码,第二个包含我的冒泡排序算法。主要代码包括bubblesort。
主:
#include<stdio.h>
#include<string.h>
#include"2.c"
int main(void)
{
char text[100];
int length;
printf("Insert text: \n");
gets(text);
text=bsort(text);
printf("String : %s \n",text);
return 0;
}
冒泡:
char *bsort(char text[100]){
char temp[100];
int length,i,j;
length=strlen(text);
for(i=1;i<length;i++){
for(j=0;j<length-i;j++){
if(text[j]>text[j+1]){
temp[0]=text_input[j]; //
text_input[j]=text_input[j+1];//Edit,had wrong code posted
text_input[j+1] =temp[0]; //
}
}
}
return text;}
事情是,当我运行它时,我会得到一个&#34;分配到类型&#39; char [100]&#39;时不兼容的类型来自类型&#39; char *&#39;&#34;错误
我对c非常陌生,我有点迷失,我现在正在浏览一段时间的答案。我知道该函数将返回一个char而不是char数组(从java经验中称为字符串),但我无法像我一样努力找到一种方法来做到这一点。
解决方案会很棒,或者只是提供一些小帮助。
编辑:我忘了提及我的程序实际上做了什么。它应该从用户那里得到一个字符串,应用bubblesort算法,它将按字母顺序对字符串中的每个字符进行排序,即&#34; bagf&#34;将输出为&#34; abfg&#34;。还添加了一些评论答案 0 :(得分:1)
首先,请以可读的方式编写代码,问题在于您没有交换任何值
char *bsort(char text[100])
{
char temp[100];
int length, i, j;
length = strlen(text);
for(i = 1 ; i < length ; i++)
{
for (j = 0 ; j < length - i ; j++)
{
if(text[j] > text[j + 1])
{
temp[0] = text[j];
text[j] = text[j+1];
text[j + 1] = temp[0];
}
}
}
return text;
}