如下两处传递指针的方式(其余相同)有什么区别吗, 在 gcc 上有相同的结果. 我现在知道这两种在声明方面的区别了, 那么在这里传递参数的编译过程具体实现有什么注意点吗?
Node *build(char *pre_str, char *in_str, int len) //1
{
Node *p = init(pre_str[0]-'0');
int pos = strchr(in_str, pre_str[0] )- in_str;
if (pos > 0)
{
p->lchild = build(pre_str + 1, in_str, pos);
}
if (len - pos - 1 > 0)
{
p->rchild = build(pre_str + pos + 1, in_str + pos + 1, len - pos - 1);
}
return p;
}
Node *build(char pre_str[], char in_str[], int len) //2
{
Node *p = init(pre_str[0]-'0');
int pos = strchr(in_str, pre_str[0] )- in_str;
if (pos > 0)
{
p->lchild = build(pre_str + 1, in_str, pos);
}
if (len - pos - 1 > 0)
{
p->rchild = build(pre_str + pos + 1, in_str + pos + 1, len - pos - 1);
}
return p;
}
数组在参数传递中都转换成指针