输出与目标不同
本帖最后由 不会代码的菜鱼 于 2022-10-28 15:48 编辑#include<stdio.h>
#include<stdlib.h>
struct seqstring {
int MAXNUM;
int n;
char* c;
};
typedef struct seqstring* PSeqString;
PSeqString createNullStr_seq(int m) {
PSeqString pstr = (PSeqString)malloc(sizeof(struct seqstring));
if (pstr != NULL) {
pstr->c = (char*)malloc(sizeof(char) * m);
if (pstr->c) {
pstr->n = 0;
pstr->MAXNUM = m;
return pstr;
}
else free(pstr);
}
printf("out of space!\n");
return NULL;
}
PSeqString subStr_seq(PSeqString s, int i, int j) {
PSeqString s1 = createNullStr_seq(j);
if (!s1) return NULL;
if (i > 0 && i <= s->n && j > 0) {
if (s->n < i + j - 1) j = s->n - i + 1;
for (int k = 0; k < j; k++)
s1->c = s->c;
s1->n = j;
return s1;
}
}
void main(){
char a[] = { 0,1,2,3,4,5,6,7,8,9 };
PSeqString m = createNullStr_seq(10);
for (int i = 0; i < 10; i++){
m->c[ i ]= a[ i ];
m->n = m->n + 1;}//已修改
printf("串:");
for (int j = 0; j < 10; j++)
printf("%d ",m->c);
printf("\n子串:");
PSeqString s1=subStr_seq(m,2,5);
for (int z = 0; z < 5; z++)
printf("%d ",s1->c);
}
想要输出2位置后五个数
可是输出的是前五个
求解答!!!感谢 首先,把 void main() 这种写法扔掉。如果您不想把使用这种写法的参考资料扔掉的话,请在使用其的时候保持批判性的思维,做好需要大量考证和学习到过时知识的心理准备。
把您的代码编译我就看到了两个警告test.c:33:1: warning: non-void function does not return a value in all control paths [-Wreturn-type]
}
^
test.c:34:9: warning: return type of 'main' is not 'int' [-Wmain-return-type]
void main(){
^
test.c:34:9: note: change return type to 'int'
void main(){
^~~~
int
2 warnings generated.第二个是先前提到的,就不再多说了,而第一个问题明显是一个逻辑问题: subStr_seq 的有一条执行路径上没有指定返回值(结果)!尽管这不是造成问题的直接原因,这仍然是一个非常严重的错误,也反映了您没有仔细的考虑串处理的逻辑和流程。
而没有仔细考虑处理逻辑正是产生问题的原因。请看 seqstring 结构中的成员 n ,您想用它表达什么含义?它实际上表达的是什么含义?结合这一成员的初始化、更新维护和使用,希望您能自己思考出结果,也欢迎继续追问。 dolly_yos2 发表于 2022-10-28 15:30
首先,把 void main() 这种写法扔掉。如果您不想把使用这种写法的参考资料扔掉的话,请在使用其的时候保持 ...
感谢,确实是因为n未使用
页:
[1]