c - 获取二叉树节点

标签 c data-structures scanf binary-tree

我使用堆栈进行了非递归后序。但在 Main 函数中,我想使用 scanf 获取 TreeNode,而不是仅仅手动输入所有 TreeNode。例如, printf("您想要多少个 TreeNode?");并获取 TreeNodes 的数量,然后 printf("enter TreeNodes");所以我像这样输入 1 2 3 4 5 。 我该如何编码?

#include <stdio.h>
#include <stdbool.h>
#define STACK_SIZE 10
typedef struct TreeNode {
    int data;
    struct TreeNode* left;
    struct TreeNode* right;
}TreeNode;

typedef struct Stack {
    TreeNode *buf[STACK_SIZE];
    int top;
}Stack;


void postOrder(TreeNode *root, Stack *stack)
{
    Stack* s = stack;
    if (root == NULL) return;
    TreeNode* current = root;
    TreeNode *tmp;
    bool done = 0;
    InitStack(s);


    while(!done)
    {
        while (current != NULL)
        {
            if (current->right != NULL)
                Push(s, current->right);
            Push(s, current);
            current = current->left;
        }
        if (IsEmpty(s))
            break;
        current = Pop(s);
        if (IsEmpty(s))
        {
            printf("%d", current->data);
            break;
        }
        tmp = Pop(s);
        if (tmp == current->right)
        {
            Push(s, current);
            current = current->right;
        }
        else
        {
            printf("%d", current->data);
            Push(s, tmp);
            current = NULL;
        }
    }
}
int main()
{   
    Stack s;
    TreeNode one, two, three, four, five;

    one.data = 1;
    two.data = 2;
    three.data = 3;
    four.data = 4;
    five.data = 5;

    one.left = &two;        one.right = &three;
    two.left = &four;       two.right = &five;
    three.left = NULL;      three.right = NULL;
    four.left = NULL;       four.right = NULL;
    five.left = NULL;       five.right = NULL;

    postOrder(&one, &s);

    printf("\n");
    getchar();

    return 0;
}

最佳答案

实现一个单独的方法来使用动态内存分配来构造树。使用malloc函数分配内存。将新节点插入树中适当的位置。

void insertNode(TreeNode *root,int data){
        //To Do create node dynamically using malloc and attach to root at appropriate position
    }


读取输入的方法如下所示:

int main()
{
    Stack s;
    TreeNode *rootNode = NULL;
    int nodeCount;
    int data;
    printf("Enter number of nodes:\n");
    scanf("%d",&nodeCount);
    printf("enter TreeNodes Data:\n");
    for (int i=0; i < nodeCount; i++) {
        scanf("%d",&data);
        insertNode(rootNode,data);
    }
    postOrder(rootNode, &s);

    return 0;
}

关于c - 获取二叉树节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50873459/

相关文章:

c - 使用 scanf 读取字符串作为输入

java - 链接列表 add(i, x) 方法的代码审查

algorithm - 回溯优化

c - SIGQUIT 和 STDIN(读取函数的意外转储)

c - 如何返回到上一个 scanf 并保持流程

string - 同构字符串

c - sscanf 无法检测到数字 C

c - 用 sscanf 读取日期

c - 使用 K&R C 编程语言书开始使用 C

c - c中函数使用问题