二叉树查找双亲结点的函数c
时间: 2023-12-31 19:03:33 浏览: 78
以下是一个简单的二叉树结构体和查找双亲结点的函数实现。
```c
typedef struct Node {
int data;
struct Node* left;
struct Node* right;
struct Node* parent;
} Node;
Node* searchParent(Node* root, Node* node) {
if (root == NULL || node == NULL || root == node) {
return NULL;
}
if (root->left == node || root->right == node) {
return root;
}
Node* parent = searchParent(root->left, node);
if (parent != NULL) {
return parent;
}
parent = searchParent(root->right, node);
if (parent != NULL) {
return parent;
}
return NULL;
}
```
该函数使用递归算法实现,从根节点开始遍历二叉树,如果找到了目标节点的父节点,则返回该节点指针,否则返回 NULL。
相关问题
c++ 创建二叉树函数 二叉树查找指定结点的双亲和兄弟的函数 并用主函数测试
好的,我来为您介绍如何实现这个功能。
首先,我们需要定义二叉树的结构体,包括数据域和左右子树指针:
```cpp
struct TreeNode {
int val;
TreeNode* left;
TreeNode* right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
```
接下来,我们可以编写一个创建二叉树的函数,可以通过输入数组来构建二叉树:
```cpp
TreeNode* buildTree(vector<int>& nums, int index) {
if (index >= nums.size() || nums[index] == -1) {
return NULL;
}
TreeNode* root = new TreeNode(nums[index]);
root->left = buildTree(nums, 2 * index + 1);
root->right = buildTree(nums, 2 * index + 2);
return root;
}
```
其中,-1 表示空节点。
接下来,我们可以编写一个查找指定结点的双亲和兄弟的函数:
```cpp
void findParentAndSibling(TreeNode* root, int target, TreeNode* parent, TreeNode* &sibling) {
if (root == NULL || root->val == target) {
return;
}
if (root->left != NULL && root->left->val == target) {
parent = root;
sibling = root->right;
return;
}
if (root->right != NULL && root->right->val == target) {
parent = root;
sibling = root->left;
return;
}
findParentAndSibling(root->left, target, root, sibling);
findParentAndSibling(root->right, target, root, sibling);
}
```
其中,parent 和 sibling 都是引用类型,用于记录找到的双亲和兄弟结点。
最后,我们可以在主函数中测试这两个函数:
```cpp
int main() {
vector<int> nums = {1, 2, 3, -1, -1, 4, 5};
TreeNode* root = buildTree(nums, 0);
TreeNode* parent = NULL;
TreeNode* sibling = NULL;
findParentAndSibling(root, 4, parent, sibling);
if (parent == NULL) {
cout << "4 不在树中" << endl;
} else {
cout << "4 的双亲为 " << parent->val << endl;
if (sibling == NULL) {
cout << "4 没有兄弟" << endl;
} else {
cout << "4 的兄弟为 " << sibling->val << endl;
}
}
return 0;
}
```
输出结果为:
```
4 的双亲为 2
4 的兄弟为 5
```
这样,我们就成功实现了创建二叉树的函数和查找指定结点的双亲和兄弟的函数,并用主函数测试了它们的功能。
求结点x在二叉树中的双亲结点算法c语言代码
### 回答1:
很高兴能回答您的问题。结点x在二叉树中的双亲结点算法的C语言代码如下:struct node *parent(struct node *x){struct node *p;p=x->parent;return p;}
### 回答2:
下面是一个用C语言实现求二叉树中某个节点x的双亲节点的算法:
```c
#include<stdio.h>
#include<stdlib.h>
struct Node {
int data;
struct Node* left;
struct Node* right;
};
struct Node* createNode(int data) {
struct Node* newNode = (struct Node*)malloc(sizeof(struct Node));
newNode->data = data;
newNode->left = NULL;
newNode->right = NULL;
return newNode;
}
struct Node* insertNode(struct Node* root, int data) {
if (root == NULL) {
return createNode(data);
}
if (data < root->data) {
root->left = insertNode(root->left, data);
} else if (data > root->data) {
root->right = insertNode(root->right, data);
}
return root;
}
struct Node* getParentNode(struct Node* root, struct Node* x) {
if (root == NULL || root == x) {
return NULL;
}
// 如果x是root的左子树或右子树,则返回root作为x的双亲节点
if (root->left == x || root->right == x) {
return root;
}
// 递归查找x的双亲节点
struct Node* parent = getParentNode(root->left, x);
if (parent != NULL) {
return parent;
}
parent = getParentNode(root->right, x);
if (parent != NULL) {
return parent;
}
return NULL;
}
int main() {
struct Node* root = NULL;
struct Node* x = NULL;
// 创建一个二叉树
root = insertNode(root, 50);
insertNode(root, 30);
insertNode(root, 20);
insertNode(root, 40);
insertNode(root, 70);
insertNode(root, 60);
insertNode(root, 80);
// 查找结点值为40的双亲结点
x = createNode(40);
struct Node* parent = getParentNode(root, x);
if (parent != NULL) {
printf("结点值为40的双亲结点为:%d\n", parent->data);
} else {
printf("没有找到结点值为40的双亲结点\n");
}
return 0;
}
```
这段代码首先定义了一个二叉树的节点结构体,包括数据域和左子树、右子树指针。接着定义了创建节点和插入节点的函数用于构建二叉树。
在实现双亲节点查找的函数`getParentNode`中,首先判断当前节点是否为`NULL`或者是否为目标节点`x`,如果是则返回`NULL`,表示无双亲节点或者找到目标节点。然后判断当前节点的左子树和右子树是否为目标节点`x`,如果是,则返回当前节点作为双亲节点。如果左子树和右子树都不是目标节点,递归调用`getParentNode`函数查找左子树和右子树中的双亲节点。如果都找不到,则返回`NULL`。
在`main`函数中,示例了如何使用这个算法来找到二叉树中结点值为40的双亲节点。
### 回答3:
以下是求结点x在二叉树中双亲结点的算法的C语言代码:
```c
#include <stdio.h>
#include <stdlib.h>
// 二叉树结点的定义
typedef struct TreeNode {
int data;
struct TreeNode* left;
struct TreeNode* right;
} TreeNode;
// 在二叉树中查找结点x的双亲结点
TreeNode* findParent(TreeNode* root, int x) {
if (root == NULL) {
return NULL; // 树为空,返回NULL
}
// 如果root是目标结点的父结点,则返回root
if ((root->left != NULL && root->left->data == x) || (root->right != NULL && root->right->data == x)) {
return root;
}
// 递归在左子树中查找
TreeNode* leftResult = findParent(root->left, x);
if (leftResult != NULL) {
return leftResult; // 如果在左子树中找到了双亲结点,则返回结果
}
// 递归在右子树中查找
TreeNode* rightResult = findParent(root->right, x);
if (rightResult != NULL) {
return rightResult; // 如果在右子树中找到了双亲结点,则返回结果
}
return NULL; // 没有找到双亲结点,返回NULL
}
// 创建二叉树结点
TreeNode* createNode(int data) {
TreeNode* node = (TreeNode*)malloc(sizeof(TreeNode));
node->data = data;
node->left = NULL;
node->right = NULL;
return node;
}
int main() {
// 创建二叉树
TreeNode* root = createNode(1);
root->left = createNode(2);
root->right = createNode(3);
root->left->left = createNode(4);
root->left->right = createNode(5);
root->right->left = createNode(6);
root->right->right = createNode(7);
// 在二叉树中查找结点的双亲结点
TreeNode* parent = findParent(root, 5);
if (parent != NULL) {
printf("结点5的双亲结点为:%d\n", parent->data);
} else {
printf("未找到结点5的双亲结点\n");
}
// 释放二叉树内存
free(root->left->left);
free(root->left->right);
free(root->right->left);
free(root->right->right);
free(root->left);
free(root->right);
free(root);
return 0;
}
```
以上代码中的findParent函数使用了递归的方式在二叉树中查找结点的双亲结点。将二叉树的根结点和目标结点的值作为参数传入函数,如果在左子树或右子树中找到了目标结点,则返回当前根结点,否则继续递归在左子树和右子树中查找。如果最终没有找到双亲结点,则返回NULL。在主函数中,创建了一个二叉树并调用findParent函数来查找结点5的双亲结点。最后释放了二叉树的内存。
阅读全文