我有一个正常的二叉树,我试图在使用 c 时应用迭代加深深度优先搜索:
struct node {
int data;
struct node * right;
struct node * left;
};
typedef struct node node;
我正在使用一个函数将节点插入树中,现在我需要将搜索函数实现为如下所示:
function search(root,goal,maxLevel)
所以它使用深度优先搜索但搜索到特定的最大级别然后停止这是我的第一次尝试,它没有工作:
currentLevel = 0;
void search(node ** tree, int val, int depth)
{
if(currentLevel <= depth) {
currentLevel++;
if((*tree)->data == val)
{
printf("found , current level = %i , depth = %i", currentLevel,depth);
} else if((*tree)->left!= NULL && (*tree)->right!= NULL)
{
search(&(*tree)->left, val, depth);
search(&(*tree)->right, val, depth);
}
}
}
请帮忙,谢谢...