我正在尝试编写一个简单的代码来用 C 语言构造一棵树。下面是我的代码片段。
#include<stdio.h>
struct node
{
int data;
struct node *left;
struct node *right;
};
int main()
{
struct node *root = newNode(5);
//struct node *root = NULL; working piece
//newNode(&root,5); working piece
if(root == NULL)
{
printf("No root\n");
return 0;
}
//root->left = newNode(4);
//root->right = newNode(3);
//root->left->left = newNode(2);
//root->right->right = newNode(1);
return 0;
}
struct node* newNode(int data)
{
struct node *temp;
temp = (struct node*) malloc(sizeof(struct node));
temp->data = data;
temp->left = NULL;
temp->right = NULL;
return(temp);
}
当我尝试返回结构节点地址时,编译器给了我错误
"rightNode.c", line 29: identifier redeclared: newNode
current : function(int) returning pointer to struct node {int data, pointer to struct node {..} left, pointer to struct node {..} right}
previous: function() returning int : "rightNode.c", line 12
但是,当我对此发表评论struct node* newNode(int data)
并尝试通过将结构的地址传递给下面的函数来定义一个返回 int 的函数时,它不会向我显示任何错误。
int newNode(struct node **root,int data)
{
printf("Inside New Node\n");
return 0;
}
据我所知,在 C 中将结构的地址返回给调用函数是合法的。
这与编译器有关。
我在 unix 环境中使用 cc 编译器
type cc
cc is a tracked alias for /apps/pcfn/pkgs/studio10/SUNWspro/bin/cc
下面是我用来编译的命令cc rightNode.c
任何帮助,将不胜感激...