gpt4 book ai didi

c - 使用队列的层序二叉树遍历

转载 作者:行者123 更新时间:2023-11-30 19:26:46 25 4
gpt4 key购买 nike

我正在尝试使用队列进行级别顺序遍历。但只打印第一个值,即 10。在调用 dequeue() 函数之后,但仍然没有打印这些值。显然 dequeue() 函数存在一些问题。请帮忙。

所有功能均正常运行。

            #include<stdio.h>
#include<stdlib.h>
#define max 100
int a[max];
int front=-1;
int rear=-1;
struct node
{
int data;
struct node *left, *right;
};
struct node *newNode(int data)
{
struct node *nn;
nn=(struct node *)malloc(sizeof(struct node));
if(!nn)
return;
nn->data=data;
nn->left=nn->right=NULL;
return nn;
};
void enqueue(struct node *root)
{
a[++rear]=root;
front++;
}
struct node *dequeue()
{
printf("inside dequeue\n");
struct node *temp;
temp=a[front];
front++;
return temp;
}
int isempty(){
return(front==-1);
}
void levelorder(struct node *root)
{
struct node *temp=NULL;
if(!root)
return;
enqueue(root);
while(!isempty())
{
temp=dequeue();
printf("%d\t",temp->data);
if(temp->left)
enqueue(temp->left);
if(temp->right)
enqueue(temp->right);
}
}
int main()
{
int data;
struct node *root=newNode(10);
root->left = newNode(11);
root->left->left = newNode(7);
root->right = newNode(9);
root->right->left = newNode(15);
root->right->right = newNode(8);
levelorder(root);
return 0;
}

最佳答案

我认为队列实现背后的逻辑存在一些错误。我可以给你一些建议。

        int front=0,rear=0;

void enqueue(struct node *root)
{
a[rear]=root;
rear++;
}

struct node *dequeue()
{
//handle case where queue is empty
printf("inside dequeue\n");
struct node *temp;
temp=a[front];
front++;
return temp;
}

int isEmpty(){
return(front==rear);
}

为了使其在数组大小方面更加可靠,您应该使用带有这样的索引的模函数。

        int front=0,rear=0;

void enqueue(struct node *root)
{
a[rear%max]=root;
rear++;
}

struct node *dequeue()
{
//handle case where queue is empty
printf("inside dequeue\n");
struct node *temp;
temp=a[front%max];
front++;
return temp;
}

int isEmpty(){
return(front==rear);
}

关于c - 使用队列的层序二叉树遍历,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56608473/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com